我使用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
。
感谢。