views:

32

answers:

1

Hi,

I am trying to redirect links to domain.com/tag/* to domain.com/blog/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.

Any help would be appreciated.

Thanks

+2  A: 
RewriteRule ^tag/(.*) /blog/tag/$1 [L,R=301]
toscho