301 Redirect

Status code (301) indicating that the resource has permanently moved to a new location, and that future references should use a new URI with their requests.

java 代码
  1. response.setStatus(HttpServletResponse.SC_MOVED_PERMANENTLY);   
  2. response.setHeader("Location", redirectUrl);  

你可能感兴趣的:(java)