mod_rewrite已启用,.htaccess文件正常,但请求不通过index.php

时间:2017-03-24 15:39:18

标签: .htaccess codeigniter mod-rewrite apache2

我刚刚安装了ubuntu-server_6.04.2_LTS,在全新安装后我启用了mod_rewrite,它在phpinfo()中显示 我的.htaccess文件没问题 但是,仍然请求不通过index.php enter image description here

1 个答案:

答案 0 :(得分:2)

您应该检查是否针对该特定目录(项目的根文件夹),apache配置为允许覆盖.htaccess。

如果要允许此类覆盖,apache.conf中的指令或虚拟主机的特定设置应如下所示:

<Directory /var/www/>
    AllowOverride All
    Require all granted
</Directory>