j2ee 开发应用服务器的 404 跳转错误的设置,向 web.xml 添加如下内容即可设置 404 自动跳转
<error-page>
<error-code>404</error-code>
<location>/404.html</location>
</error-page>
404.html 为错误显示页,页可以定义成其他页面。
j2ee 开发应用服务器的 404 跳转错误的设置,向 web.xml 添加如下内容即可设置 404 自动跳转
<error-page>
<error-code>404</error-code>
<location>/404.html</location>
</error-page>