我正在使用Tomcat 7和JSP页面.我想为HTTP 500错误提供自定义错误页面.
我所做的是在web.xml中声明自定义错误页面如下:
<error-page> <error-code>500</error-code> <location>/error.jsp</location> </error-page>
我用以下代码创建了一个名为error.jsp的JSP:
<%@ page pageEncoding="UTF-8" isErrorPage="true" %> <!DOCTYPE html> <html> <head> <title>500</title> </head> <body> <img src="${pageContext.request.contextPath}/images/500.jpg" /> </body> </html>
现在这适用于大多数浏览器,但在Internet Explorer中我被带到标准“网站无法显示页面”页面.
为什么我的自定义HTTP 500错误页面未在Internet Explorer中显示?
使您的HTTP错误页面大于512字节应解决此IE功能.您可以添加一些额外的元标题,在缩进代码中添加一些空格,在网站的标准布局后添加更多语义标记,添加大量HTML注释等.
翻译自:https://stackoverflow.com/questions/9022932/custom-http-error-page-is-not-displayed-in-internet-explorer