I have a url mapping defined in my web.xml for my
servlet servlet1.
/mypath/servlet1/*.html
/mypath/servlet1/*.jsp
/mypath/servlet1/*.do
I also use a context path of "myap".
So, the url used from the browser looks like:
http://www.mycompany.com/myapp/mypath/servlet1/index.html I am trying to get this mapping to work such that the user can just type in
http://www.mycompany.com/myapp/mypath/servlet1 and it would work.
So, I added the following to the above defined url mappings in web.xml:
/mypath/servlet1
Now
www.mycompany.com/myapp/mypath/servlet1 works from the browser but
www.mycompany.com/myapp/mypath/servlet1/index.html doesn't any more.
What gives?
Thanks much!
Prema