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

Popular posts from this blog

javascript - Karma not able to start PhantomJS on Windows - Error: spawn UNKNOWN -

Nuget pack csproj using nuspec -

c# - Display ASPX Popup control in RowDeleteing Event (ASPX Gridview) -