Quote:
Originally Posted by colucix
Take a look here. You have to write your own 404 html page and put the correct path as explained in the FAQ.
|
Ok , thanks , it had been done :
What i did :
- Create a 404.html file in ./webapps/myporject/404.html
- Vi /usr/loca/tomcat/conf/server.xml
Put this content :
<error-page>
<error-code>404</error-code>
<location>404.html</location>
</error-page>
- Restart tomcat
Thanks Colucix !