307 Temporary Redirect
The requested resource resides temporarily under a different URI, but the client should continue to use the original URI for future requests.
Explanation
The 307 (Temporary Redirect) status code indicates that the target resource resides temporarily under a different URI and the user agent MUST NOT change the request method if it performs an automatic redirection to that URI. This differs from 302 in that it guarantees the request method will not be changed when redirecting.
For example, a POST request should remain a POST request after the redirect, which is not guaranteed with a 302 response due to historical implementations that incorrectly changed POST to GET.
The server SHOULD generate a Location header field in the response containing a URI reference for the different URI. The user agent MAY use the Location field value for automatic redirection. The server's response payload usually contains a short hypertext note with a hyperlink to the different URI.
Example Response
HTTP/1.1 307 Temporary Redirect Location: https://www.example.com/temporary-form-processing Content-Type: text/html <html> <head> <title>Temporary Redirect</title> </head> <body> <h1>Temporary Redirect</h1> <p>The form submission will be processed <a href='https://www.example.com/temporary-form-processing'>here</a>.</p> </body> </html>
Related Status Codes
Check where URLs redirect to with our free URL redirect checker.
Check URL Redirects