.htaccess 301将http://olddomain.com/post/post-title重定向到http://newdomain.com/story/post-title

时间:2015-07-23 15:27:27

标签: apache .htaccess redirect

我正在尝试将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]

但由于某种原因它不起作用。你能救我一下吗?

1 个答案:

答案 0 :(得分:0)

您可能需要在代码中使用RewriteBase

RewriteEngine on
RewriteBase /
RewriteRule ^post/(.*)$ http://newdomain.com/story/$1 [R=301,L]