.htaccess不重定向到请求的页面

时间:2017-03-01 10:58:12

标签: laravel .htaccess redirect

我使用laravel构建了一个应用程序,并使用此行.htaccess将所有请求从我的old-domain.com重定向到我的new-domain.com

RewriteCond %{HTTP_HOST} ^(www\.)?old-domain\.com$
RewriteRule (.*) https://www.new-domain.org/$1 [R=301,L]

但是当我访问https://www.new-domain.org/requestedPage时,我会被重定向到https://www.new-domain.org/index.php,而不是https://www.new-domain.org/requestedPage

感谢。

0 个答案:

没有答案