Ashirvad Uniyal wrote: > There is an application made in Tomcat in the webapps\Mondrian > directory, the application is already being used by the clients, > the problem is the client has to always type > http://abc.com/Mondrian/index.jsp in the address bar, rather than typing > only > http://abc.com/index.jsp. Please help me where to change the code so as > to omit typing Mondrian every time in the address bar.
Typing the "index.jsp"-part should be unneccessary anyway. At least Tomcat 5.5 contains an entry defining index.jsp as a welcome-file in the default server-wide conf/web.xml. If you want to access your webapp without the need for it's name being present in the URL you could make it the ROOT context - as already suggested. Or you could create an index.jsp (or whatever you want to map as a welcome-file) in the ROOT webapp that does a redirect to your actual context. Regards mks --------------------------------------------------------------------- To start a new topic, e-mail: users@tomcat.apache.org To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]