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
- Re: <error-page> bug ? Laurent Michenaud
- Re: <error-page> bug ? Andoni