response.sendRedirect("index.html")
的返回信息如下:
HTTP/1.1 302 Moved Temporarily
Server: Apache-Coyote/1.1
test: 6
Location: http://localhost:8000/boeing/index.html
Content-Length: 0
Date: Mon, 16 May 2011 06:53:13 GMT
此方式等同于:
response.setStatus(HttpServletResponse.SC_TEMPORARY_REDIRECT);
response.setHeader("Location", "index.jsp");