0

我正在使用具有页面的 html5 样板,404.html但如果我导航到错误的 URL,它不会显示。浏览器显示默认的 404 页面。htaccess 文件已经有这一行:

ErrorDocument 404 /404.html

一些帮助?

4

1 回答 1

0

您是否已在目录指令中设置AllowOverride All?这必须在您的服务器配置中的某个位置。例如虚拟主机配置:

<Directory /path/to/htdocs>
    Options Indexes FollowSymLinks Includes ExecCGI
    AllowOverride All # this All here is important, default is none
    Order allow,deny
    Allow from all
</Directory>
于 2012-12-14T18:26:57.537 回答