Reputation: 6292
I am trying to redirect all tag pages in my wordpress website to my blog page using .htaccess. This is my code in .htaccess -
Redirect 301 ^tag/(.*) /blog/
Unfortunately it does not work, what can be the solution for it?
Upvotes: 1
Views: 1184
Reputation: 41219
Redirect directive doesn't use regex, you can use RedirectMatch instead
RedirectMatch 301 ^/tag/(.*) /blog/
Or
Redirect 301 /tag/ /blog/
Upvotes: 2