Peter Stavrinides wrote:
> How do I configure Tomcat to provide a page redirect from the context of
> a servlet  to the default start page i.e.:    
> /myapp/ to go to -> /myapp/home

add "home" to the list of 'welcome' files in your web.xml

   <welcome-file-list>
      <welcome-file>index.jsp</welcome-file>
        ...
      <welcome-file>home</welcome-file>
   </welcome-file-list>

p




> Thanks
> Peter
> 
> ---------------------------------------------------------------------
> To start a new topic, e-mail: users@tomcat.apache.org
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
> 
> 


---------------------------------------------------------------------
To start a new topic, e-mail: users@tomcat.apache.org
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to