如何使用undertow
将非www URL重定向到jboss
中的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)")
1条答案
按热度按时间js81xvg61#
不一样,这一个集中在
JBoss
中的HTTP到HTTPS,但公认的答案是相当详细的,也许它会帮助你:https://stackoverflow.com/a/43752373/14076903
我引述:
“重写规则可用于重定向用户。在undertow子系统(
standalone.xml
或domain.xml
)中,您将需要创建新的重写筛选器,然后在新的fitler-ref
中启用该筛选器。”