http://host/myapp/index.jsp displays correctly http://host/myapp/ displays the same index.jsp correctly However http://host/myapp does not display index.jsp correctly. Instead I get the 404 error, page not found.
After reviewing the docs I could find, I am left wondering how do I get http://host/myapp to display index.jsp? Thanks, -Tom Burns Houston, TX BTW: I have the following: latest mod_webapp build (10/31/01) Tomcat 4.0.1 Apache 1.3 index.jsp is located at /jakarta-root/webapps/myapp/index.jsp index.jsp is listed in welcome-list in /jakarta-root/webapps/myapp/WEB-INF/web.xml The entries in httpd.conf look like the following: # # webapp: Connector for Jakarta Tomcat 4.0 # <IfModule mod_webapp.c> WebAppConnection conn warp localhost:8008 WebappDeploy examples conn /examples WebAppDeploy ems conn /ems WebAppInfo /webapp-info </IfModule>
