标签: php apache
如何将每个URI重写为index.php?
RewriteRule . index.php
这只会重写当前目录中的文件,因此example.org/folder不会重写。
答案 0 :(得分:1)
如果该规则位于文档根目录中的htaccess文件中,则它将重定向所有内容。而不是.,它应该是.*:
.
.*
RewriteEngine On RewriteRule .* index.php