1. HTTP (Hypertext Transfer Protocol)

  1. HTTP Status Codes

  1. 307 Temporary Redirect
    1. Writing responses (servers)
    2. Reading responses (clients)
    3. Overview table
    4. Example

307 Temporary Redirect

The 307 Temporary Redirect HTTP status code tells clients the request was not filled, and to re-issue the request at a different URI.

Writing responses (servers)

Servers should produce 307 Temporary Redirect when a request should be re-made to a different URI, especially a different authority or server.

Reading responses (clients)

307 Temporary Redirect is an indication the request was not filled, and that this must be issued at a different location. The client must otherwise make the same request, including the same method.

Overview table

Name
307
Message
307 Temporary Redirect
Description
The request must be re-made at a different URI.
Specification
RFC 7231: HTTP/1.1 Semantics and Content ยง6.4.7. 307 Temporary Redirect

Example

HTTP/1.1 307 Temporary Redirect