Check response codes, redirect chains, and key headers for any URL — without opening DevTools.
A full picture of the server response in one view:
X-Robots-Tag overrides everything
A page can have a perfectly clean <meta robots> tag in HTML and still be noindexed via X-Robots-Tag in the HTTP response header. The header always wins. This is especially common on PDFs, paginated URLs, and any pages served through a CDN layer.
When a redirect chain is longer than two hops and you need to trace it. When a page won't index despite clean on-page tags. When verifying CDN cache headers after a configuration change. When diagnosing 404s or 301s on a migrated site without access to server logs.
Yes, free and no signup. It returns the status code, the full redirect chain, and the response headers.
A 301 is a permanent redirect and passes ranking signals to the destination. A 302 is temporary and is the wrong choice for a permanent move.
Each extra hop wastes crawl budget and can dilute signals. Point redirects straight to the final URL.
Related tools: bulk redirect checker and Google index checker. Background reading: check URL status codes in Google Sheets.