Traces a URL's redirect chain step by step, showing the HTTP status code and target address at each hop.
What Is a Redirect?
A redirect forwards a request made to one URL to another URL. The most common types are 301 (permanent) and 302 (temporary) redirects. From an SEO standpoint, you should always use a 301 for pages that have moved; otherwise, ranking authority is not passed along.
Why Should You Check It?
- Chain length: Multi-hop redirects (A→B→C) cause speed loss and leak SEO value.
- Loops: Infinite redirect loops make the page inaccessible.
- Correct code: Use a 301 for permanent moves and a 302 for temporary situations.
How to Use It?
- Enter the starting URL.
- Review each hop in the chain along with its status code (301/302/200).
Tip: Ideally, you reach the target directly with a single 301. Configure www→non-www or http→https transitions in a single step.
Frequently Asked Questions
What is the difference between 301 and 302?
A 301 indicates a permanent move and passes on SEO value; a 302 is temporary and does not pass value along. Always use a 301 for permanent moves.
Are too many redirects harmful?
Yes. Each hop adds extra latency and causes small losses in SEO value. Keep the chain as short as possible.