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?
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?
You must be logged in to post a comment.
Redirect directive doesn’t use regex, you can use RedirectMatch instead
Or
Try it.