How can I 301 redirect domain.com/tag/* to domain.com/blog/tag/*
I am trying to redirect links to domain.com/tag/* to domain.com/bl开发者_开发知识库og/tag/* (where * is the actual tag name - eg music so domain.com/tag/music would redirect to domain.com/blog/tag/music)
I have been trying but I just can't wrap my head around it.
RewriteRule ^tag/(.*) /blog/tag/$1 [L,R=301]
精彩评论