【发布时间】:2012-09-25 23:43:00
【问题描述】:
如何将所有请求发送到 www.myurl.com/{ANYTHING} 并将它们全部发送到 www.myurl.com/index.php
我发现我可以通过以下方式发送所有内容:
RewriteRule .* index.php [R=Permanent,L]
这很好用,除了因为我的 cpanel/apache 安装而被重定向到 www.myurl.com/home/username/public_html。因此,我将代码更改为
RewriteBase /
RewriteRule .* index.php [R=Permanent,L]
但这又会导致无限循环。
【问题讨论】:
标签: apache mod-rewrite cpanel whm