Skip to content
3xx · Redirection

302 Found

The resource is temporarily at a different URL.

What it means

HTTP 302 Found is a temporary redirect. It tells clients the resource lives at the Location URL for now, but the original URL should still be used in future because the move is not permanent.

When it happens

It happens for temporary situations: A/B tests, geo or device redirects, sending users to a login page, or a maintenance redirect that will be reverted.

How to fix it

  • Use 302 only for genuinely temporary redirects; use 301 when the move is permanent.
  • If a page has permanently moved but returns 302, switch it to 301 so signals transfer.
  • Make sure the destination is correct and does not itself redirect again.

SEO impact

Mixed. Search engines generally keep the original URL indexed for a 302 and may not transfer ranking signals. Using 302 where you meant 301 is a common SEO mistake that can stall a migration.

Check it with Sitewell

Find out which of your URLs return 302

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

Related codes

Related guides