I have to redirect the 500 error page you see in the picture on an empty page in Hybris.
How can do this?
Have you tried enabling error-page in web.xml ?
<error-page>
<exception-type>java.lang.Exception</exception-type>
<location>/WEB-INF/pages/error/serverError.jsp</location>
</error-page>
<error-page>
<error-code>500</error-code>
<location>/WEB-INF/pages/error/serverError.jsp</location>
</error-page>