我的 404 错误页面上出现了 jetty 版本

问题描述 投票:0回答:1

我在使用 jetty 时遇到 404 错误页面问题,我想知道如何使 jetty 所在的版本从那里消失?例子: enter image description here

我不希望出现jetty版本,而且我真的不知道在哪里可以删除它,因为代码不是我的,而且我也不是安装jetty的人

我看了很多,但我真的不知道它可以在哪里或将其移动到哪里,以便码头版本出来,我真的需要删除它,因为这是客户的要求

java http jetty
1个回答
0
投票

您可以通过添加

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

希望这有帮助,否则,请告诉我......

© www.soinside.com 2019 - 2024. All rights reserved.