Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何在 404 请求上启用自定义 404 页面,同时在地址栏中保留相同的 URL,而不是看起来像http://yourwebsite.com/error.html.
http://yourwebsite.com/error.html
只需将以下行添加到您的 Web 根目录中的 htaccess 文件中:
ErrorDocument 404 /404page.html
然后 make404page.html包含您希望向用户显示的任何文本。
404page.html