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

I have a lot of external links that is point to this http://example.com/sub-dir/post_name/2010/10/10/

and I would like to redirect them to this http://example.com/sub-dir/2010/10/10/post_name/

The first link is old url structure,and the second one is new url structure.

code that I have tried :

Redirect 301 /sub-dir/([a-z0-9-]+)/(\d{4}\/\d{2}\/\d{2})/ http://example.com/sub-dir/$2/$1/

Can someone help me with this?

share|improve this question

1 Answer

up vote 1 down vote accepted
RewriteEngine on
RewriteRule ([\w\-]+)/(\d+)/(\d+)/(\d+)/? /$2/$3/$4/$1 [R=301]

The condition matches go like:

  • one or more word/hyphen characters
  • a slash
  • one or more number characters
  • a slash
  • one or more number characters
  • a slash
  • one or more number characters

It then redirects the user (with a status code of 301) to a different arrangement of those sub-patterns.

See mod_rewrite#RewriteRule.

share|improve this answer
thank you,can you explain a little bit that please ? I would like to learn :) – user147 Dec 22 '11 at 17:05
Why is mine not working? What is wrong with mine? – user147 Dec 22 '11 at 17:06
@user303832: Hopefully that explanation of the pattern helps a bit. – Tim Cooper Dec 22 '11 at 17:13
Hi @Tim Cooper,yes it explains,but why mine isn't working,I have done similar like yours? – user147 Dec 22 '11 at 17:19
I have change my question a little bit,because I have sub dir,and I have tried your code,it didn't work for me.maybe because I have sub dir,I'm not sure is that imporant? – user147 Dec 22 '11 at 17:23
show 2 more comments

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.