Apache Tomcat修改默认400/404/500页面

  1. 找到${tomcat_root_dir}/conf/web.xml, 在文件末尾的</web-app>添加如下内容
    <error-page>
        <error-code>400</error-code>
        <location>/error.html</location>
    </error-page>
    <error-page>
        <error-code>404</error-code>
        <location>/error.html</location>
    </error-page>
    <error-page>
        <error-code>500</error-code>
        <location>/error.html</location>
    </error-page>

</web-app>
  1. 删除所有${tomcat_root_dir}/webapps/ROOT下的所有内容, 新建一个error.html文件,写入以下内容
<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">default backend - 404</pre></body></html>
  1. 重启Tomcat服务
posted @ 2022-09-08 20:17  银河系派件员  阅读(1614)  评论(0编辑  收藏  举报