我正在尝试将http://olddomain.com/post/post-title重定向到http://newdomain.com/story/post-title
我的.htaccess规则是:
RewriteEngine on
RewriteRule ^post/(.*)$ http://newdomain.com/story/$1 [L,R=301]
但由于某种原因它不起作用。你能救我一下吗?
答案 0 :(得分:0)
您可能需要在代码中使用RewriteBase
:
RewriteEngine on
RewriteBase /
RewriteRule ^post/(.*)$ http://newdomain.com/story/$1 [R=301,L]