Its part of the Servlet Specification and not unique to Tomcat. Place 
this snippet into web.xml to redirect page not found errors to 
/errorpage_404.jsp.

<error-page>
   <error-code>404</error-code>
   <location>/errorpage_404.jsp</location>
</error-page>

-Tim

Markus Kirsten wrote:
> How do I configure standard error pages like 403, 404 etc. for Tomcat?
> 
> I've gone through the Tomcat documentation breifly but can't find 
> anything about it.
> 
> 
> Markus 


--
To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

Reply via email to