标签: php http error-code
如何在404请求中启用自定义404页面,同时在地址栏中保留相同的网址,而不是查看http://yourwebsite.com/error.html的内容。
http://yourwebsite.com/error.html
答案 0 :(得分:4)
只需将以下行添加到根网站目录中的htaccess文件中:
ErrorDocument 404 /404page.html
然后让404page.html包含您希望向用户显示的任何文本。
404page.html