Mega Code Archive

 
Categories / Java / JSP
 

Welcome page and top level URL

<html> <head> <title>Welcome to rntsoft</title> </head> <body> Welcome to the welcome page.  <br>You can reach this page by entering the top level URL <br>for this web application. e.g. <br>http://www.rntsoft.com</body> </html> <?xml version="1.0" encoding="UTF-8"?> <web-app xmlns="http://java.sun.com/xml/ns/j2ee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd" version="2.4"> <welcome-file-list>   <welcome-file>index.jsp</welcome-file> </welcome-file-list> </web-app>