Apache Tomcat修改默认400/404/500页面
作者:互联网
- 找到
${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>
- 删除所有
${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>
- 重启Tomcat服务
标签:Tomcat,400,html,404,error,500 来源: https://www.cnblogs.com/zhaojli/p/16670771.html