HTTP 302 Found indicates the requested resource is temporarily available at a different URI provided in the Location header. The client should continue to use the original URI for future requests. Search engines do not transfer link equity for 302 redirects.
The resource is temporarily served from a different URL during maintenance, A/B testing, or while a feature is being rolled out.
Unauthenticated users are temporarily redirected to a login page before being sent back to the original URL.
If the redirect is permanent, use 301 instead of 302 to preserve SEO value.
Check the Location header for the temporary URL.
curl -I https://example.com/page
Ensure the target URL does not redirect back to the original URL.
curl -L -v -o /dev/null https://example.com/page 2>&1 | grep 'Location:'