我正在使用具有404.html
页面的html5 Boilerplate但如果我导航到错误的网址则不会显示。浏览器显示默认的404页面。 htaccess文件已经有了这一行:
ErrorDocument 404 /404.html
一些帮助?
答案 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>