307 Temporary Redirect

3xx Redirection. Like 302, but guarantees the request method and body won't change on the redirected request.

3xx Redirection

What it means

Like 302, but guarantees the request method and body won't change on the redirected request.

Common causes

Used when a temporary redirect needs to preserve the original HTTP method (e.g. a POST stays a POST).

How to fix it

Follow the Location header, keeping the same method and body as the original request.

Frequently asked questions

What does HTTP 307 mean?

Like 302, but guarantees the request method and body won't change on the redirected request.

What causes a 307 Temporary Redirect?

Used when a temporary redirect needs to preserve the original HTTP method (e.g. a POST stays a POST).

How do I fix a 307 error?

Follow the Location header, keeping the same method and body as the original request.

Other 3xx Redirection codes