如何将所有请求发送到 www.myurl.com/{ANYTHING} 并将它们全部发送到 www.myurl.com/index.php
我发现我可以通过以下方式发送所有内容:
RewriteRule .* index.php [R=Permanent,L]
这很好用,除了我被重定向到 www.myurl.com/home/username/public_html 因为我的 cpanel/apache 安装。所以我改为将代码更改为
RewriteBase /
RewriteRule .* index.php [R=Permanent,L]
但这会再次导致无限循环。