303 See Other GET methods unchanged. Others changed to GET (body lost). Used to redirect after a PUT or a POST 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。