I’ve been grappling with a basic rewrite rule as we’ve changed a template name from template-a to template-b and need to 301 all links to the new template-b URLs. Example:

/trusted-installers/template-a/something-here/and-possibly-here

Should be 301 redirected to:

/trusted-installers/template-b/something-here/and-possibly-here

I know I need a pattern match and R=301 but so far I’ve not got this to work quite right. Any quick suggestions would be very gladly received.

link|improve this question
feedback

1 Answer

up vote 0 down vote accepted
RewriteRule ^/trusted\-installers/template\-a/(.*)$ /trusted-installers/template-b/$1 [R=301]
link|improve this answer
Great, thanks. I knew it would be an easy one! – Russ Back Sep 23 '11 at 7:52
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.