Apache 2.2 -> 2.4 升级:/ 上的权限被拒绝

Apache 2.2 -> 2.4 升级:/ 上的权限被拒绝

我将服务器从 Apache 2.2 升级到了 Apache 2.4

现在我无法访问

www.example.org/ 

不再

www.example.org/index.php

工作中。

我已经设定

DirectoryIndex index.php

答案1

我的重写配置出现了一些问题:

RewriteCond %{HTTP_HOST} ^www\.example\.com [NC]
RewriteRule ^(.*) $1 [L]

我将其替换为

RewriteCond %{HTTP_HOST} ^www\.example\.com [NC]
RewriteRule ^(.*) - [L]

并且它有效。

相关内容