如何使用undertow
将jboss
中的非www URL重定向到www URL。
尝试使用下面的命令,但是重定向太多了。
/subsystem=undertow/configuration=filter/rewrite=nonwww-to-www:add(redirect="true",target="https://www.localhost:8443%U")
/subsystem=undertow/server=default-server/host=default-host/filter-ref=nonwww-to-www:add(predicate="regex(pattern=^https://localhost:8443,value=https://localhost:8443,full-match=false)")
不一样,这一个侧重于HTTP到HTTPS在JBoss
,但接受的答案是非常详细的,也许它有助于你:
https://stackoverflow.com/a/43752373/14076903
我引用:
"重写规则可用于重定向用户。在暗流子系统(standalone.xml
或domain.xml
)中,您需要创建一个新的重写过滤器,然后在新的fitler-ref
中启用该过滤器。