The Redirect Checker detects whether a URL redirects and finds the final destination. It uses the browser's Fetch API in redirect:manual mode to detect redirects, then follow-mode to resolve the final URL. Works with CORS-enabled URLs.

Check Redirects

Browser limitation: Due to CORS policy, this tool only works with CORS-enabled URLs. For complete redirect chain inspection including non-CORS URLs, use curl -IL https://yoururl.com in a terminal.

Common Redirect Types

301Permanent Redirect

URL has moved permanently. Link equity passes. Best for SEO when moving pages.

302Temporary Redirect

URL is temporarily at a different location. Link equity may not fully transfer.

307Temporary (Method)

Temporary redirect that preserves the HTTP method (POST stays POST).

308Permanent (Method)

Permanent redirect that preserves HTTP method. Use for API endpoint moves.