Re: Turn off Tomcat Version on 404 error.

2007-03-14 Thread Susan Richards
Thanks. I was hoping there was a way to just turn it off and not have a custom error page. >>> Darren <[EMAIL PROTECTED]> 3/14/2007 5:14 AM >>> For just 404 you can create your own page as another poster advised. If you want to do this for all error/code pages, take a look part way down the

Re: Turn off Tomcat Version on 404 error.

2007-03-14 Thread Darren
For just 404 you can create your own page as another poster advised. If you want to do this for all error/code pages, take a look part way down the common section of this article. http://www.owasp.org/index.php/Securing_tomcat#Common On 13 Mar 2007, at 20:58, Susan Richards wrote: How does

Re: Turn off Tomcat Version on 404 error.

2007-03-13 Thread Rashmi Rubdi
Custom 404 error pages can be specified in Tomcat's web.xml file located under TomcatFolder\conf\ Add the following to the web.xml: 404 /web/not_found_404.jsp I've also seen this in some project's web.xml , instead of Tomcat's web.xml - but haven't tested it. Some common mi