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?