如果用户尝试访问无效页面(不存在),我该如何将请求重定向到公共页面?
答案 0 :(得分:1)
在web.xml
<error-page>
<error-code>
404
</error-code>
<location>
/yourCommonPageForPageDoesntExist.html
</location>
</error-page>
答案 1 :(得分:1)
一种方法是通过在404
中配置<error-page>
元素来请求容器处理web.xml
错误
<error-page>
<error-code>404</error-code>
<location>/ErrorPage.jsp</location>
</error-page>