gpt4 book ai didi

jetty - 在 Jetty 中从 http 重定向到 https

转载 作者:行者123 更新时间:2023-12-01 11:41:10 24 4
gpt4 key购买 nike

我想从 http://myurl 永久重定向到 https://myurl,但在 Jetty 中我只找到 MovedContextHandler,有了它我只能重定向上下文路径,例如从 myurl/bla 到 myurl/bla/bla

<Configure class="org.mortbay.jetty.handler.MovedContextHandler">
<Set name="contextPath">/bla</Set>
<Set name="newContextURL">/bla/bla</Set>
<Set name="permanent">true</Set>
<Set name="discardPathInfo">false</Set>
<Set name="discardQuery">false</Set>
</Configure>

但是我怎样才能使用 url 前缀呢?

最佳答案

最好在您的 /WEB-INF/web.xml 中处理

<web-app>
...
<security-constraint>
<web-resource-collection>
<web-resource-name>Everything in the webapp</web-resource-name>
<url-pattern>/*</url-pattern>
</web-resource-collection>
<user-data-constraint>
<transport-guarantee>CONFIDENTIAL</transport-guarantee>
</user-data-constraint>
</security-constraint>
</web-app>

关于jetty - 在 Jetty 中从 http 重定向到 https,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20611815/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com