WebLogic has a way to customize standard error pages like HTTP 404 inside web applications using web.xml
<web-app xmlns="http://java.sun.com/xml/ns/j2ee">
<error-page>
<error-code>404</error-code>
<location>errors/404.htm</location>
</error-page>
</web-app>
Is there a way to set up a common default error page for all applications that WebLogic runs without editing web.xml? Is it possible to capture 404 in Apache and serve a common error page?
fglez source
share