Ahmed iqbal
Ahmed iqbal

Reputation: 597

301 permanent redirect not working in htaccess

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

Answers (1)

Jon Lin
Jon Lin

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

Related Questions