In tomcat server, the default splash page is found in /tomcat/webapps/root and is controlled by the index.html and/or index.jsp files.
I would like the default splash page to be taken care of a separate webapp I have installed. It would be located thusly:
/tomcat/webapps/myapplicationfolder
It contains no index.html or index.jsp file, but when I goto
http://myIPaddress/myapplicationfolder, I get the login page I am looking for.
How do I make this the default index/splash page? I have googled and found suggestions, but none of them seem to be working properly.
The best answer so far was to do a redirect (REFRESH) inside of the current index.html file, but it first loads the tomcat default page, then refreshes to my login page. I'd rather not do that if I can avoid it.
Anyone? Anyone?