Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

automatic start of index page

Status
Not open for further replies.

dexter195

Programmer
Jun 18, 2003
220
EU
hi,

how do you automatically have a webpage start up in the tomcat directory instead of getting the file brower page.

e.g.

when you type in

that a webpage opens up instead of the list of files in that folder.

thanks for the help
 
Add this to your context's web.xml :

Code:
	<welcome-file-list>
		<welcome-file>myWelcomeFile.jsp</welcome-file>
		<welcome-file>AnotherWelcomeFileIfTheFirstOneFailsToBeFound.html</welcome-file>
	</welcome-file-list>

--------------------------------------------------
Free Database Connection Pooling Software
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top