Excuse me ... Can I define a new page to instead of Tomcat's default reject page : "HTTP Status 403 - Access to the requested resource has been denied" and Where & what should I do ?? Thank a lot !!
A simple search on google taught me this: Add these lines to your web.xml (change them accordingly ofcourse) <error-page> <error-code>500</error-code> <location>/server_error.html</location> </error-page> <error-page> <error-code>404</error-code> <location>/file_not_found.html</location> </error-page>