yogihosting
yogihosting

Reputation: 6292

Redirect all tag pages in WordPress using .htaccess

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

Answers (2)

JayDeep Nimavat
JayDeep Nimavat

Reputation: 476

Try it.

RedirectMatch 301 ^/tag/$ /blog/

Upvotes: 1

Amit Verma
Amit Verma

Reputation: 41219

Redirect directive doesn't use regex, you can use RedirectMatch instead

RedirectMatch 301 ^/tag/(.*) /blog/

Or

Redirect 301 /tag/ /blog/

Upvotes: 2

Related Questions