apache - .htaccess 301 redirect http://olddomain.com/post/post-title to http://newdomain.com/story/post-title -
i trying redirect http://olddomain.com/post/post-title http://newdomain.com/story/post-title
my .htaccess rule is:
rewriteengine on rewriterule ^post/(.*)$ http://newdomain.com/story/$1 [l,r=301]
but isn't working reason. can me out?
you may need use rewritebase
in code:
rewriteengine on rewritebase / rewriterule ^post/(.*)$ http://newdomain.com/story/$1 [r=301,l]
Comments
Post a Comment