自己写一个404对应的error.html文件,然后把该文件放到tomcat ROOT工程中,然后配置tomcat/conf/web.xml文件
增加如下代码
<error-page>
<error-code>404</error-code>
<location>/error.html</location>
</error-page>
自己写一个404对应的error.html文件,然后把该文件放到tomcat ROOT工程中,然后配置tomcat/conf/web.xml文件
增加如下代码
<error-page>
<error-code>404</error-code>
<location>/error.html</location>
</error-page>