如果某些链接出现故障,我希望我的网站用户登陆404.jsp。例如,我有一个index.jsp,其中有几个链接。现在如果找不到任何链接,则服务器应重定向到404.jsp
我不认为
<meta http-equiv="refresh" content="1; url=/next/page/to/go/to.jsp">
可以在这种情况下使用。我该如何完成这项任务?
答案 0 :(得分:1)
在您的应用程序web.xml
配置文件中有一个参数:
<error-page>
<exception-type>404</exception-type>
<location>/404.jsp</location>
</error-page>
如果用户请求任何不存在的资源,她将被重定向到给定的错误页面。