Reputation: 597
we are facing urls like "http://domain.com/p/post-content/%3Ca%20href=", these urls generate 404 errors, when we have tried to redirect something like that
Redirect 301 /p/post-title/<a href= /p/post-title/
But its not working, please anybody let me know, how to redirect url like this
Upvotes: 0
Views: 70
Reputation: 143906
The extra space is messing up the statement, apache will think there are too many arguments. Try:
Redirect 301 "/p/post-title/<a href=" /p/post-title/
Upvotes: 1