URL中的%重定向到默认错误页面的HTTP ERROR 400 intead

时间:2018-09-21 07:10:15

标签: java tomcat servlets

我在后端和Angular UI中使用了Java servlet 在我的web.xml中,我添加了以下代码来重定向任何无效的URL

<error-page>
    <location>/assets/error.html</location>
</error-page>

除%之外,此方法均正常运行。 当我在URL后输入%时,它给出HTTP错误400 enter image description here

如何将其甚至重定向到/assets/error.html?

以下是我添加“&”时的行为,这是预期的行为,因为它重定向到我的错误页面: enter image description here

请帮助。

1 个答案:

答案 0 :(得分:0)

尝试添加

<error-page>
    <error-code>400</error-code>
    <location>/assets/error.html</location>
</error-page>