将请求重定向到 JSP 中的公共页面

发布于 2024-10-22 03:31:46 字数 60 浏览 1 评论 0原文

如果用户尝试访问无效页面(该页面不存在),我如何将请求重定向到公共页面?

If the user tries to access an invalid page (which doesn't exist) how can I redirect request to a common page?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

风追烟花雨 2024-10-29 03:31:46

web.xml 中添加以下内容

<error-page>
        <error-code>
            404
        </error-code>
        <location>
            /yourCommonPageForPageDoesntExist.html
        </location>
</error-page>

add following in web.xml

<error-page>
        <error-code>
            404
        </error-code>
        <location>
            /yourCommonPageForPageDoesntExist.html
        </location>
</error-page>
疯到世界奔溃 2024-10-29 03:31:46

一种方法是通过配置 web.xml 中的 元素来请求容器处理 404 错误,例如

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

One way is to request the container to take care of 404 errors by configuring the <error-page> element in the web.xml like

<error-page>
    <error-code>404</error-code>
    <location>/ErrorPage.jsp</location>
</error-page> 
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文