I am trying to set up a custom error page to intercept Tomcat 404's
I have Apache intercepting static page 404's.
I am using tomcat 3.2 final.. And I have searched all the archives and
found one common answer:
in web.xml -->
<error-page>
<error-code>404</error-code>
<location>/404error.jsp</location>
</error-page>
This does not work! I still get a stack overflow error when I hit a page that does not exist.
Does this just not work on 3.2 final or is there something else I am missing? Some people
say this works but I have had no luck..
I would appreciate some help as this is very frustrating..
Thank -you in advance
