自定义404页面

时间:2012-12-14 18:07:25

标签: .htaccess http-status-code-404 errordocument

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

ErrorDocument 404 /404.html

一些帮助?

1 个答案:

答案 0 :(得分: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>