0
我已經在WildFly 9上部署了spring mvc應用程序。應用程序名稱是MyApp.war.Now我通過在瀏覽器上放置完整的URL(https://MyappDomainName.com/MyApp)如何將URL重定向到WildFly中的應用程序URL
當我在瀏覽器上放置https://MyappDomainName.com時,如何獲得上述完整的URL。請幫助我。提前致謝
我已經在WildFly 9上部署了spring mvc應用程序。應用程序名稱是MyApp.war.Now我通過在瀏覽器上放置完整的URL(https://MyappDomainName.com/MyApp)如何將URL重定向到WildFly中的應用程序URL
當我在瀏覽器上放置https://MyappDomainName.com時,如何獲得上述完整的URL。請幫助我。提前致謝
通過添加以下內容來修改standalone.xml。
<server name="default-server">
<http-listener name="default" socket-binding="http" redirect-socket="https"/>
<https-listener name="httpsServer" socket-binding="https" security-realm="ApplicationRealm"/>
<host name="default-host" alias="MyDomain.com" default-web-module="MyApp.war">
<location name="/" handler="welcome-content"/>
<filter-ref name="server-header"/>
<filter-ref name="x-powered-by-header"/>
</host>
<host name="https-default" alias="MyDomain.com" default-web-module="MyApp.war">
</host>
</server>