307
3xxSEO: neutralRFC 9110

HTTP 307 Temporary Redirect

Temporary redirect that preserves the HTTP method (unlike 302 which changes POST to GET).

Indexable by Google
No
Link equity passed
No
SEO Impact
Neutral
Category
3XX

SEO Impact

307 is similar to 302 from an SEO perspective — Google typically indexes the original URL. The key technical difference from 302: the browser must repeat the original HTTP method on the redirect destination (a POST remains a POST). For SEO, choose 301 for permanent redirects. Avoid using 307 for page redirects visible to search engines.

When to Use 307

Temporary redirects where preserving the HTTP method matters (e.g., API redirects maintaining POST requests).

HTTP Response Example

HTTP/1.1 307 Temporary Redirect
Location: https://example.com/new-endpoint

Test with cURL

$ curl -X POST https://api.example.com/v1/submit -L

Related 3xx Status Codes

301 Moved Permanently302 Found (Temporary Redirect)303 See Other308 Permanent Redirect
← All HTTP Status Codes