在web.xml或JSP中指定错误页面不管用
通过错误码来配置error-page?
?? <error-page>?
????? <error-code>404</error-code>?
????? <location>/NotFound.jsp</location>
?? </error-page>?
?上面配置了当系统发生404错误时,跳转到错误处理页面NotFound.jsp。?但是发现并没有跳转到NotFound.jsp页面. ?原因是:?错误转向页面要大于500个字节或1024个字节,否则ie不管用