Tomcat安装与配置

2021/2/18 Tomcat

# 配置404页面

修改 conf/web.xml

<web-app> 
    <!-- 欢迎页 -->
	<welcome-file-list>
        <welcome-file>index.html</welcome-file>
        <welcome-file>index.htm</welcome-file>
        <welcome-file>index.jsp</welcome-file>
    </welcome-file-list>  
    <error-page>
        <error-code>404</error-code>
        <!-- 定义的页面,必须以“/”开头,放在项目根路径下 -->
        <location>/404.html</location>
    </error-page>
</web-app>
1
2
3
4
5
6
7
8
9
10
11
12
13