When my error page is at the root of the webapp, tomcat can't find it.
 
In web.xml of the webapp :
 
This works :
<error-page>
<error-code>404</error-code>
             <location>/error/notfound.jsp</location>
</error-page>
 
This works
<error-page>
<error-code>404</error-code>
             <location>/</location>
</error-page>
 
This DOESNOT works :
<error-page>
<error-code>404</error-code>
             <location>/notfound.jsp</location>
</error-page>
 
Tomcat is 4.1.29

Reply via email to