将请求重定向到 JSP 中的公共页面
如果用户尝试访问无效页面(该页面不存在),我如何将请求重定向到公共页面?
If the user tries to access an invalid page (which doesn't exist) how can I redirect request to a common page?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在
web.xml
中添加以下内容add following in
web.xml
一种方法是通过配置
web.xml
中的
元素来请求容器处理404
错误,例如One way is to request the container to take care of
404
errors by configuring the<error-page>
element in theweb.xml
like