point one app to the root domain without " jw/web/userview/ "

Confluence User - 02 Feb, 2022

is there a way to host one app to the root domain without " jw/web/userview/ "

Example:

localhost/appname


thanks

apach;url;userviews

1


03 Feb, 2022
confluenceUser
confluenceUser

Go to tomcat/webapps/, and create folder with the name you want. Then, create index.jsp with content like...

<%
    String redirectURL = "http://localhost:8080/jw/web/userview/expenses/....";
    response.sendRedirect(redirectURL);
%>

Then it will redirect to the full actual URL of the app.


RELATED QUESTIONS

Your answer


To answer a question you'll need an account.

Print