// http 3xx · redirection
HTTP 307 Temporary Redirect
Temporary redirect that preserves the HTTP method.
What HTTP 307 Temporary Redirect means
307 Temporary Redirect is like 302 but with a guarantee: the client must repeat the request at the new URL using the same HTTP method and body. Use it for temporary redirects of POST/PUT requests where the method must not change.
Which category is it?
307 is a 3xx code — Redirection. 3xx means further action is needed to complete the request, usually because the resource lives at a different URL.
Other redirection (3xx) codes
301 Moved Permanently 302 Found 303 See Other 304 Not Modified 307 Temporary Redirect 308 Permanent Redirect