Jsp如何实现网页的重定向

1.可以使用:


  response.sendRedirect(”http://www.foo.com/path/error.html”);  

  2.可以手工修改HTTP header的Location属性,如下:

<%
response.setStatus(HttpServletResponse.SC_MOVED_PERMANENTLY);
String newLocn = “/newpath/index.html”;
response.setHeader(”Location”,newLocn);
%>  

  3.也可以使用forward:

  <jsp:forward page=”/newpage.jsp” />  

  请注意:只能在任何输出还没有发送到客户端之前使用这种方式。

 

你可能感兴趣的:(java)