我将服务器从Apache2.2升级到Apache2.4
现在我无法进入
www.example.org/ 更多
www.example.org/index.php起作用了。
我已经准备好
DirectoryIndex index.php发布于 2015-03-21 19:15:44
我的重写配置有一些问题:
RewriteCond %{HTTP_HOST} ^www\.example\.com [NC]
RewriteRule ^(.*) $1 [L]我把这个换成了
RewriteCond %{HTTP_HOST} ^www\.example\.com [NC]
RewriteRule ^(.*) - [L]而且起作用了。
https://serverfault.com/questions/677247
复制相似问题