我试图在找不到页面时显示自定义错误消息,并且在我的 .htaccess 上添加了这样的一行:
ErrorDocument 404 error/404.html
但这只是在屏幕上显示 404.html 而不是渲染 404.html 页面,如果我这样写
ErrorDocument 404 /error/404.html
比它给我一个错误
此外,在尝试使用 ErrorDocument 处理请求时遇到 404 Not Found 错误。
有没有另一种方法来显示实际的错误 html 页面?谢谢你,丹尼尔!