Do 301 Redirects Hurt SEO? Myths vs Reality

The long-standing myth that 301 redirects lose 15% of PageRank is wrong. Here is what actually happens, when 301s cause problems, and when they are perfectly fine.

If you have spent any time reading about SEO and redirects, you have probably encountered the claim that 301 redirects "lose" some percentage of PageRank. The number most commonly cited is 15%. This belief shaped redirect strategy across the SEO industry for years, causing site owners to avoid redirects whenever possible and to delay necessary site migrations out of fear of losing rankings.

The claim is wrong. Google confirmed it in 2016, and their guidance has been consistent since. But the myth persists, and it continues to lead people into worse decisions than a simple 301 would be.

This article separates what is true from what is not, explains when 301 redirects genuinely do cause problems, and lays out the best practices that actually matter. For the full comparison of redirect types, see the HTTP Redirect Guide.

The Myth: 301s Lose 15% of PageRank

The origin of this belief traces back to a 2010 statement by Matt Cutts, who at the time led Google's webspam team. In a discussion about whether to use a 301 redirect or a rel=canonical tag, Cutts mentioned that PageRank "dissipates" through a 301 redirect in a way similar to how it dissipates through a regular link. The SEO community interpreted this as confirmation that roughly 15% of PageRank was lost through every 301 redirect.

This interpretation spread rapidly. Blog posts cited it. SEO tools flagged 301 redirects as potential ranking risks. Conference speakers warned against unnecessary redirects. The recommendation became: avoid 301s if you can, and if you must use them, keep them to a minimum because each one costs you a piece of your ranking power.

The problem is that this interpretation was either wrong at the time or became wrong shortly after. Either way, it has not been accurate for at least a decade.

The Reality: Full PageRank Transfer Since 2016

In July 2016, Gary Illyes, a Google Search Analyst, posted on Twitter/X: "30x redirects don't lose PageRank anymore." The statement was unambiguous. All 3xx redirect types (301, 302, 307, 308) now pass full PageRank to the destination URL.

Illyes did not specify when this change took effect. It may have been in place for years before the announcement. But the confirmation itself changed the calculus for SEO professionals. A 301 redirect is not a tax on your link equity. It is a lossless transfer.

Google Search Central documentation now reflects this position. The official guidance on redirects states that Google passes ranking signals through 301 redirects. There is no mention of any dampening factor, percentage loss, or PageRank penalty.

This does not mean 301 redirects are risk-free. They can absolutely cause SEO problems. But the problems come from implementation mistakes, not from the redirect itself.

When 301 Redirects Do Cause Problems

The 301 redirect mechanism is fine. The ways people implement 301s are often not. Here are the situations where 301 redirects genuinely hurt your SEO.

Redirecting to an Irrelevant Page

If you redirect a high-ranking product page to your homepage, you lose the topical relevance that made that page rank in the first place. Google treats redirects to unrelated pages similarly to soft 404 errors. The link equity may technically pass, but the destination page does not match the search intent of the original, so rankings drop anyway.

Always redirect to the most relevant equivalent page. If a product page is being removed, redirect it to the parent category page or a closely related product. If there is no relevant replacement at all, consider returning a 410 Gone status code instead of forcing a redirect to an irrelevant destination.

Building Long Redirect Chains

A redirect chain is a series of redirects between the original URL and the final destination:

Page A --301--> Page B --301--> Page C --301--> Page D

While Google says it will follow up to 10 hops, each hop adds latency and introduces a point of failure. If any link in the chain breaks or returns an error, the entire chain fails and no equity reaches the final destination. Chains also consume crawl budget, which matters for large sites.

Chains form naturally over time, especially after multiple site migrations. The fix is straightforward: audit your redirects and point everything directly to the current final URL. For detection methods, see Redirect Chains Explained.

Putting Temporary Content on a Permanently Redirected URL

This is a subtle mistake. If you 301 redirect URL A to URL B, and URL B is a temporary landing page that itself gets moved or deleted, you have created a fragile chain. The redirect from A was permanent, but B was not. Now A points nowhere useful.

Before setting up a 301, make sure the destination URL is stable. If the destination might change, set up the redirect to the most stable URL in the chain (often a category page or a canonical version of the content).

Redirect Loops

A redirect loop occurs when two or more URLs redirect to each other in a circle. The simplest version is A redirects to B, and B redirects back to A. Browsers detect this and show an error. Google cannot crawl either page.

Loops usually happen when multiple redirect rules conflict. For example, a rule that redirects HTTP to HTTPS might conflict with a rule that redirects HTTPS back to HTTP. Or a www-to-non-www rule might conflict with a non-www-to-www rule set in a different configuration file.

Test your redirects after every configuration change. A quick curl command will reveal loops immediately. For more troubleshooting, see How to Fix ERR_TOO_MANY_REDIRECTS.

Too Many Redirects on a Large Site

For small sites (under a few thousand pages), the number of redirects is rarely a concern. For large sites with hundreds of thousands of pages, excessive redirects can impact crawl efficiency. If a significant portion of the URLs in your sitemap or internal links are redirected, Googlebot spends time following redirects instead of crawling fresh content.

After a migration, update your internal links to point directly to the new URLs. Remove redirect rules for URLs that no longer receive external traffic. Keep your sitemap clean and free of redirected URLs.

When 301 Redirects Are Perfectly Fine

Despite the lingering myths, there are many situations where a 301 is not just acceptable but the correct and recommended approach.

Domain migrations. Moving from an old domain to a new one requires 301 redirects. There is no alternative. Google expects them, handles them well, and passes full ranking signals through them.

URL restructuring. Changing your URL structure (for example, moving from /blog/2024/01/post-title to /articles/post-title) is a normal part of site maintenance. 301 redirects ensure users and search engines find the new locations.

HTTPS migration. Redirecting HTTP URLs to their HTTPS equivalents is a best practice. Google has explicitly encouraged HTTPS adoption and handles the redirect well.

Consolidating duplicate content. If you have both www and non-www versions of your site, or if duplicate pages exist at multiple URLs, 301 redirects to the canonical version consolidate your ranking signals.

Removing old pages. When a page no longer exists but a relevant replacement does, a 301 to that replacement is better than a 404 error for both users and search engines.

In all of these cases, the 301 redirect is the tool that preserves your SEO work. Avoiding the redirect out of fear of PageRank loss would be the actual mistake.

What the SEO Community Got Wrong

The 15% PageRank loss myth survived for so long because it was intuitively plausible. Links have always "leaked" some PageRank through dampening factors in the original algorithm. Applying the same logic to redirects seemed reasonable.

But a redirect is not the same thing as a link. A link is a recommendation from one page to another. A redirect is a statement that the content has moved. Google's algorithm distinguishes between the two, and the 2016 confirmation made that distinction explicit.

The myth also survived because it was self-reinforcing. If a site owner implemented 301 redirects and saw a ranking drop, they blamed the redirects. But ranking drops after migrations are usually caused by other factors: changed content, broken internal links, lost external links to pages that were not redirected, or Google re-evaluating the site during a major structural change. The 301 redirect was rarely the cause, but it was the most visible change, so it took the blame.

The practical lesson is to focus on implementation quality, not on avoiding redirects. A clean set of 301 redirects to relevant destinations, with no chains and no loops, will preserve your rankings. Avoiding redirects to "save PageRank" will not.

Best Practices for 301 Redirects

Use 301 for permanent moves. If the old URL is not coming back, use a 301. Do not default to 302 because your framework does. Verify the status code after deployment. For details on 301 vs 302, see the dedicated comparison.

Redirect to relevant content. Every redirect should land the user on a page that serves the same or similar intent. Homepage redirects are a last resort, not a default.

Keep chains short. One hop is ideal. Two is acceptable if temporary. Three or more means you need to audit and flatten. Use Redirect Tracer to check your chains.

Update internal links. After setting up redirects, update your internal links to point to the new URLs directly. This reduces unnecessary hops and speeds up your site.

Monitor after migration. Use Google Search Console to check for crawl errors, indexing issues, and traffic changes after any redirect implementation. The "Page indexing" report will show redirect-related problems.

Clean up old rules. Redirect rules accumulate over time. Periodically review your server config, CDN rules, and CMS settings to remove redirects that are no longer needed.

References

  1. Gary Illyes, Google, "30x redirects don't lose PageRank anymore," Twitter/X, July 2016.
  2. Google, "Redirects and Google Search," Google Search Central, 2024. https://developers.google.com/search/docs/crawling-indexing/301-redirects
  3. IETF, "RFC 9110 - HTTP Semantics, Section 15.4: Redirection 3xx," June 2022. https://httpwg.org/specs/rfc9110.html#status.3xx

Check your 301 redirects in seconds

Trace every redirect hop, verify status codes, and confirm your link equity is flowing where it should.

Try Redirect Tracer