Apache重定向所有文件

时间:2012-10-12 10:12:22

标签: php apache

如何将每个URI重写为index.php?

RewriteRule . index.php

这只会重写当前目录中的文件,因此example.org/folder不会重写。

1 个答案:

答案 0 :(得分:1)

如果该规则位于文档根目录中的htaccess文件中,则它将重定向所有内容。而不是.,它应该是.*

RewriteEngine On
RewriteRule .* index.php