308
3xxSEO: positiveRFC 9110

HTTP 308 Permanent Redirect

Permanent redirect that preserves the HTTP method. Google treats this like 301.

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

SEO Impact

308 is the method-preserving equivalent of 301. Google explicitly treats 308 like 301 and consolidates link equity to the destination. Use it when you need a permanent redirect that must keep a POST method (rare in SEO, more common in API contexts). For typical HTML page redirects, 301 is more universally supported.

When to Use 308

Permanent API redirects where the HTTP method must be preserved across the redirect.

HTTP Response Example

HTTP/1.1 308 Permanent Redirect
Location: https://api.example.com/v2/endpoint

Test with cURL

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

Related 3xx Status Codes

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