我在使用 jetty 时遇到 404 错误页面问题,我想知道如何使 jetty 所在的版本从那里消失?例子:
我不希望出现jetty版本,而且我真的不知道在哪里可以删除它,因为代码不是我的,而且我也不是安装jetty的人
我看了很多,但我真的不知道它可以在哪里或将其移动到哪里,以便码头版本出来,我真的需要删除它,因为这是客户的要求
您可以通过添加
webapp/WEB-INF/web.xml
块在 web.xml (error-page
) 中定义自定义错误页面:
<web-app ...>
...
<error-page>
<error-code>404</error-code>
<location>/my_custom_404.html</location>
</error-page>
</web-app>
来源:https://eclipse.dev/jetty/documentation/jetty-9/index.html#custom-error-pages
希望这有帮助,否则,请告诉我......