.htaccess 不起作用

.htaccess 不起作用

我有一个.htaccess文件/var/www,其内容如下:

ErrorDocument 404 /404.html

apache2.conf AccessFileName.htaccess,并且AllowOverride不存在。出于某种原因,访问example.com/anything不会显示404.html

答案1

您需要配置一个合适的允许覆盖在配置文件中设置以获取錯誤文檔工作。您需要的覆盖是fileinfo 例如

<Directory /var/www/>
    .
    .
    .
    AllowOverride fileinfo 
 </Directory>

相关内容