其他分享
首页 > 其他分享> > Apache Tomcat修改默认400/404/500页面

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服务

标签:Tomcat,400,html,404,error,500
来源: https://www.cnblogs.com/zhaojli/p/16670771.html