As said in the in the title, I want to change default error pages in tomcat and did:
<error-page>
<error-code>500</error-code>
<location>/error_500.html</location>
</error-page>
<error-page>
<error-code>404</error-code>
<location>/error_404.html</location>
</error-page>
Is it possible to use wildcard error codes like
<error-page>
<error-code>*</error-code>
<location>/error.html</location>
</error-page>
?
(The example above doesn't work, but is there another way?)
Thanks