我使用重写过滤器配置了我的 wildfly 11 安装,以从 http 重定向到 https。如那里所述: 将http请求重定向到wildfly 10中的https
<filters>
<rewrite name="http-to-https" redirect="true" target="https://%v:443%U"/>
</filters>
和
<filter-ref name="http-to-https" predicate="equals(%p,80)"/>
这对于 GET 请求非常有效,但是如果我尝试 POST 请求,我会得到
405 Method not allowed
有谁知道如何配置重写过滤器以使用消息类型(%m,http://undertow.io/undertow-docs/undertow-docs-1.4.0/index.html)
谢谢!