Do backlinks have to be indexed in Google to count as a ranking factor?

3 min read

Verdict

An indexing check alone cannot tell you whether a backlink contributes ranking signals. Crawling, indexing, and link evaluation are different processes. Google needs to discover a link, but being crawlable does not guarantee that the link will receive ranking credit. Treat links on persistently unindexed pages as uncertain rather than promised SEO value.

Understanding the Key Differences

Crawling

Googlebot fetches a page’s HTML and parses links.

Indexing

Google decides whether to store/show that page in search results.

Credit (e.g., PageRank + context/anchor) Google may use for ranking if it crawls the page and encounters an eligible link.

What the documentation establishes

  • Google recommends standard, crawlable <a href> links.
  • A robots.txt block can prevent Google from fetching the page and discovering its links through that crawl.
  • noindex controls whether a page can appear in search; it does not promise that links on that page will pass ranking credit.
  • Google recommends sponsored for paid placements and ugc for user-generated links. These qualifications should reflect the relationship, not be removed to seek ranking credit.
  • Neither a site: query nor a backlink tool proves how Google values an individual link.

Best Practices

Ensure Crawlability

Don’t place links on pages blocked by robots.txt or behind hard logins/paywalls.

<a href="https://example.com/">Descriptive anchor</a> rendered in the DOM.

Use sponsored for advertising or paid placements, ugc for user-generated content, and nofollow where appropriate. Do not remove these attributes to manipulate rankings.

Prefer Durable, Discoverable Pages

Articles/resources that are internally linked and recrawled.

Stabilize the Context

Keep the link live, avoid frequent URL changes, and maintain internal links to the linking page if you control it (e.g., partner sites, microsites).

Common Pitfalls

Robots-Blocked Sources

If the section is disallowed in robots.txt, Google may be unable to discover the link by crawling that page.

Perma-noindex Placements

A permanent noindex placement is not a dependable promise of search visibility or link credit.

Buttons, data-href, or onclick handlers that never render a proper <a href> are not reliable crawlable links.

Homepage Dumps

Moving all old links to a generic page (or irrelevant redirects) can behave like soft-404s—minimal consolidation.

Relying on “site:” Checks

Whether a page appears with site: isn’t proof of link value; crawlability is the key.

Quick decision guide

  1. Can Google fetch the linking page? If not, investigate access or robots.txt restrictions.
  2. Does the page contain a standard <a href> link? If not, make the destination crawlable.
  3. Does the link relationship require sponsored, ugc, or nofollow? Apply the appropriate attribute.
  4. Is the placement relevant and useful to readers? Evaluate that value separately from uncertain ranking credit.

Implementation Checklist

  • Linking page is not disallowed in robots.txt.
  • Link is a normal, crawlable <a href>.
  • Link attributes accurately describe paid, user-generated, or other qualified relationships.
  • Linking page is internally linked (not orphaned) and shows up in normal crawl paths.
  • Indexing status is understood; no ranking credit is assumed from a crawlability check.

Summary

Crawlability makes link discovery possible. Indexing status alone does not establish link value, and neither crawlability nor indexing guarantees ranking credit.

Prioritize relevant, accessible links that help readers reach useful content.

Sources and references