Enter a URL to see its HTTP status code (200, 301, 302, 404, 500, etc.) and, for redirects, the Location header. The check runs on our server so we can read the real response headers.
About Redirect Checker
When you visit a URL, the server responds with an HTTP status code. 200 means OK; 301 and 302 mean redirect (with a Location header); 404 means Not Found; 500 means server error. This tool performs a HEAD request (no redirect following) so you see the first response only — useful for debugging redirect chains and SEO.
How to use
- Enter the URL (with or without
https://). - Click Check URL. The status code and any redirect location are shown.
Frequently Asked Questions
Why is the check done on the server?
Browsers block cross-origin requests and often hide response headers for security (CORS). Checking the URL on our server lets us read the real status code and Location header.
Can I check localhost or internal URLs?
No. For security we only allow public HTTP/HTTPS URLs. Localhost and private IP ranges are blocked.
What does "first response only" mean?
We do not follow redirects. You see the status of the first response (e.g. 301) and the Location header. To see the final destination you would need to follow the chain yourself or use a different tool.