HTTP Status Code 308 (Permanent Redirect) is a response sent by a server to indicate that a requested resource has been permanently moved to a new URL. Unlike other permanent redirects, 308 ensures that the original HTTP request method (such as POST or PUT) and its payload are preserved during redirection—as standardized in RFC 7538.
When a web browser, search engine, or API client receives a 308 redirect, it must automatically resend the original request (method and body) to the new location specified in the Location
header. This is crucial for modern web applications that handle sensitive actions—like submitting forms, processing payments, or changing user settings—because it prevents accidental data loss or unexpected behavior sometimes seen with older redirect codes, particularly 301.
The key innovation of HTTP 308 is method preservation:
Such distinctions are especially relevant for SaaS, content, and e-commerce platforms undergoing migrations or rebranding, where both user experience and SEO must be protected.
For example, moving a SaaS blog’s contact form from
/contact
to/get-in-touch
with a 308 ensures all in-progress form submissions complete smoothly—with no lost data or SEO penalties.
Code | Type | Preserves Method? | SEO Impact | Typical Use |
---|---|---|---|---|
301 | Permanent | No | Passes ranking | URL changes, content |
302 | Temporary | No (GET default) | Not recommended | Short redirects |
307 | Temporary | Yes | No change | Temporary POST moves |
308 | Permanent | Yes | Passes ranking | Perm. POST/PUT moves |
Reference: MDN Developer Docs, SEMrush Guide, RFC 7538
Leading SEO authorities confirm the 308 passes ranking signals much like a 301 redirect. This means link equity, traffic, and search engine trust are preserved with proper implementation. Always audit redirects post-migration for loops or errors, and validate using SEO tools to ensure analytics tracking remains accurate.
For more, see SiteGround’s 308 documentation and additional best practices from SEMrush.
HTTP Status Code 308 is a critical tool for web managers, marketers, and developers seeking permanent, modern, method-safe redirects. Using it ensures your website or SaaS platform preserves both data integrity and SEO value whenever a resource is moved permanently.