303 See Other
GET
methods unchanged. Others changed toGET
(body lost). Used to redirect after aPUT
or aPOST
to prevent a refresh of the page that would re-trigger the operation.
假设之前请求的method不是GET
,那么重定向302
导致的请求可能会维持method不变。
(“GET
methods unchanged. Others may or may not be changed to GET
.”)
重定向303
的不同之处是,它会把method改成GET
。
一个用例是,一般用户登录的请求是POST
;登录失败时,需要重定向到之前的登录页面,访问这个登录页面应该要GET
。
所以,重定向时要用303。