我在后端和Angular UI中使用了Java servlet 在我的web.xml中,我添加了以下代码来重定向任何无效的URL
<error-page>
<location>/assets/error.html</location>
</error-page>
除%之外,此方法均正常运行。 当我在URL后输入%时,它给出HTTP错误400
如何将其甚至重定向到/assets/error.html?
以下是我添加“&”时的行为,这是预期的行为,因为它重定向到我的错误页面:
请帮助。
答案 0 :(得分:0)
尝试添加
<error-page>
<error-code>400</error-code>
<location>/assets/error.html</location>
</error-page>