Setting default webapp 2007-10-01 - By Ken Bowen
Back Would it be enough to replace ROOT/index.jsp with the following?:
<% page contentType = "text/html" %>
<% String redirectURL = "http://myserver:8081/SiteData/"; response.sendRedirect(redirectURL); %>
-- Ken Bowen
Pid wrote: > David kerber wrote: > >> I want my webapp to be the default application on my Tomcat 5.5 server, >> so that it will go to the app's login page even if they don't enter the >> app name as part of the url. For example, normally my app is accessed at: >> >> http://myserver:8081/SiteData/Login.jsp >> >> I want them to get Login.jsp even if all they enter is: >> >> http://myserver:8081 >> >> Do I need to install the SiteData app as root to accomplish this, or can >> it be done without this second installation? >> > > Installing it as ROOT will do the trick, if you have no other default app. > > Alternatively, put a single redirecting servlet/jsp/filter as the index > in the ROOT webapp and have it execute a normal redirectURL() to your > webapp. > > p > > > > >> D >> >> >> >> -- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ------ >> To start a new topic, e-mail: users@(protected) >> To unsubscribe, e-mail: users-unsubscribe@(protected) >> For additional commands, e-mail: users-help@(protected) >> >> >> > > > -- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ------ > To start a new topic, e-mail: users@(protected) > To unsubscribe, e-mail: users-unsubscribe@(protected) > For additional commands, e-mail: users-help@(protected) > > >
-- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ------ To start a new topic, e-mail: users@(protected) To unsubscribe, e-mail: users-unsubscribe@(protected) For additional commands, e-mail: users-help@(protected)
|
|