在 Wildfly 中配置 standalone.xml 以将 root(/) 重定向到子目录

Configuring standalone.xml in Wildfly for redirect root(/) to sub directory

如何将根路径重定向到子路径?

例如 http://test.com:9090/ -> http://test.com:9090/portal/

如果您只需要重定向而不是重写,您可以创建 ROOT.war 并拥有带重定向的单个索引页

在新版本的Wildfly中,我们可以在undertow中使用rewrite:

<filter-ref name="root-redirect" predicate='regex(pattern="^/$", value="%U", full-match=true)' />

<rewrite name="root-redirect" redirect="true" target="/xxx" />