Skip to content
3xx · Redirection

308 Permanent Redirect

A permanent redirect that preserves the original request method.

What it means

HTTP 308 Permanent Redirect is like 301 but guarantees the request method and body are preserved. The resource has permanently moved to the Location URL, and clients must not change a POST into a GET when following it.

When it happens

It happens when permanently moving an endpoint that must keep its method — such as a permanently relocated API route that receives POST requests.

How to fix it

  • Use 308 for permanent redirects where preserving the method matters; use 301 for ordinary page redirects.
  • Point it straight at the final destination to avoid chains.
  • Update internal references to the new URL.

SEO impact

Strong and positive, like a 301. Search engines treat 308 as a permanent move and transfer ranking signals to the new URL.

Check it with Sitewell

Find out which of your URLs return 308

Paste a list of URLs and Sitewell checks the status code of every one at once — free and without signup.

Related codes

Related guides