Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am migrating an old site to a new one and need a large number of url redirects/rewrites.

As an example I need to redirect /old_page to /new_page the problem is that /old_page can have any number of url segments above it e.g. /some/other/section/old_page

Currently I have to use the following 2 rules:

RewriteRule ^old_page/?$ /new_page? [R=permanent,L]
RewriteRule ^(.*)/old_page/?$ /new_page? [R=permanent,L]

Is there anyway to achieve this with just one rule? I did try using this:

RewriteRule ^(.*)/?old_page/?$ /new_page? [R=permanent,L]

but this then results in unintended matches e.g. /do_not_move_old_page also gets redirected.

share|improve this question

1 Answer

up vote 1 down vote accepted

Try:

RewriteRule ^(.*/)?old_page/?$ /new_page? [R=permanent,L]
share|improve this answer
That worked beautifully, thanks. – anteatersa Oct 15 '12 at 9:35

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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