JSP---web.xml中统一配置全站错误处理页面,提高网站的友好度

在web.xml中的<web-app></web-app>之间添加以下标签:

<error-page>
<error-code>404</error-code>
<location>/404.jsp</location>
</error-page>

 

posted @ 2016-05-28 19:53  框框A  阅读(223)  评论(0编辑  收藏  举报