如何在jboss中使用undertow将非www URL重定向到www URL

wbrvyc0a  于 2022-11-08  发布在  其他
关注(0)|答案(1)|浏览(151)

如何使用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)")
js81xvg6

js81xvg61#

不一样,这一个集中在JBoss中的HTTP到HTTPS,但公认的答案是相当详细的,也许它会帮助你:
https://stackoverflow.com/a/43752373/14076903
我引述:
“重写规则可用于重定向用户。在undertow子系统(standalone.xmldomain.xml)中,您将需要创建新的重写筛选器,然后在新的fitler-ref中启用该筛选器。”

相关问题