ToolsRedirect Checker

Redirect Checker

Enter a URL to get ready-to-run cURL commands to check redirect chains, plus a full guide on redirect types and their SEO impact.

ℹ️ Browser security policies prevent direct HTTP requests from client-side tools. Use the cURL commands below in your terminal.

Redirect Types — SEO Guide

301Moved Permanently

The resource has permanently moved to a new URL. Link equity (PageRank) is passed. Best for permanent URL changes, domain migrations, and HTTPS redirects.

SEO Impact

Passes ~99% link equity. Most common for SEO purposes.

Use for

Permanent URL changes, HTTP → HTTPS, domain moves.

302Found (Temporary Redirect)

The resource has temporarily moved. Google does not transfer link equity. Use sparingly — Google may cache the original URL.

SEO Impact

Minimal link equity transfer. Original URL stays indexed.

Use for

A/B testing, temporary maintenance pages.

307Temporary Redirect (HTTP/1.1)

Like 302, but guarantees the HTTP method is preserved (e.g., POST stays POST). Safer for non-GET requests.

SEO Impact

No significant link equity transfer.

Use for

Temporary redirects where method preservation matters.

308Permanent Redirect (HTTP/1.1)

Like 301, but guarantees the HTTP method is preserved. The modern equivalent of 301 for non-GET requests.

SEO Impact

Same as 301 — passes link equity.

Use for

Permanent redirects preserving HTTP method.

How to Use

  1. Enter the URL you want to check in the input field.
  2. Copy the generated cURL command and run it in your terminal.
  3. Look for HTTP/2 301 or Location: headers in the output.
  4. Follow the chain until you reach a 200 OK response.
  5. For SEO: prefer 301 for permanent redirects and avoid redirect chains longer than 2 hops.

Quick Reference

301Moved Permanently
302Found (Temporary
307Temporary Redirect
308Permanent Redirect

Redirect Best Practices

Always use 301 for permanent URL changes.

Keep redirect chains to 1–2 hops max.

Update internal links after a redirect.

Avoid redirect loops.

Don't redirect every page to your homepage.