Enter a URL to trace the full redirect chain.
101IP traces all HTTP redirects from a URL, showing response codes (301, 302, 307, 308), the final destination and time per hop. Useful for SEO audits, redirect diagnosis and link safety checks.
Enter the full URL of the page (for example https://example.com/page) in the input field and click "Check". The tool will send a series of HTTP requests and display the redirect chain: each hop with its response code, timing, and destination URL. Both absolute URLs and paths work, but a full address including the protocol is recommended for accuracy.
This means the server is performing sequential redirects. For example, a page may first redirect from HTTP to HTTPS (301), then from the non-www domain to www (301), or to another URL (302). The tool records every hop so you can see the full picture and, if needed, consolidate the chain into a single redirect to improve SEO and page load speed.
A redirect loop means a URL redirects back to itself through a chain of other URLs, creating an infinite cycle. You need to fix the redirect rules in .htaccess (Apache) or your server configuration (nginx, IIS). Remove the conflicting rules or revise the logic so the final URL returns a 200 status code rather than another 3xx redirect. After fixing, re-check the URL with this tool to confirm the chain terminates correctly.