我正在使用Spring 3 + Tomcat 7
在web.xml我定义
web.xml
<error-page> <error-code>404</error-code> <location>/filenotfound</location> </error-page>
但是我想重定向到外部网址www.google.com而不是/filenotfound。我怎样才能做到这一点 ?
www.google.com
/filenotfound
我不确定在位置中提供直接网址是否可行。但是您可以在其中放置一个jsp并从该jsp重定向到url。
<error-page> <error-code>404</error-code> <location>/filenotfound.jsp</location> </error-page>
filenotfound.jsp
<%@ page language="java" %> <%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %> <c:redirect url="http://hotmail.com" />