2

我试图在找不到页面时显示自定义错误消息,并且在我的 .htaccess 上添加了这样的一行:

ErrorDocument 404 error/404.html

但这只是在屏幕上显示 404.html 而不是渲染 404.html 页面,如果我这样写

ErrorDocument 404 /error/404.html

比它给我一个错误

此外,在尝试使用 ErrorDocument 处理请求时遇到 404 Not Found 错误。

有没有另一种方法来显示实际的错误 html 页面?谢谢你,丹尼尔!

4

1 回答 1

2

根据您的描述,您的文件夹似乎在error文件夹内DOCUMENT_ROOT/site。在这种情况下,以下完整路径ErrorDocument指令应该适合您:

ErrorDocument 404 /site/error/404.html
于 2013-09-09T18:38:33.347 回答