Allan Bruce wrote:

Is there a way I can get tomcat to stop displaying so much info if somebody
hits a 404 or other error?

Stick something like this in your web.xml file.

<error-page>
<error-code>500</error-code>
<location>/500.html</location>
</error-page>
<error-page>
<error-code>404</error-code>
<location>/400.html</location>
</error-page>




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



Reply via email to