302 Redirect
A temporary HTTP redirect (status 302 Found). Search engines keep the original URL indexed because the move is signalled as temporary.
Definition
A 302 redirect is an HTTP response with status code 302 ("Found") that tells the client the requested resource has been temporarily moved to a different URL.
Google's documentation says it generally treats 302 redirects as temporary moves, so the original URL stays in the index and ranking signals are not transferred to the destination — the opposite behaviour of a 301. If the move is in fact permanent, Google may eventually treat the 302 like a 301, but using the correct status code from the start removes that ambiguity. The closely related 307 status has the same temporary semantics but additionally guarantees the request method is preserved.
Examples
Seasonal landing page
An e-commerce site puts its homepage behind a 302 redirect to a one-week sale landing page. After the sale ends, the redirect is removed and traffic returns to the original homepage — Google had kept the original URL indexed throughout.
Sources
Related terms
Where QueryCatch uses this
Last updated: 10/05/2026