我配置了带有重写过滤器的wildfly 11安装,以便从http重定向到https。如上所述: Redirect http requests to https in wildfly 10
<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)
谢谢!