Skip to main content
Beta: Front-End Checklist is currently in beta. Some issues are still being fixed. Thanks for your patience.
SEOMedium

Add relevant external links

Validates that pages include outgoing links to authoritative external sources where appropriate

Utilities
Quick take
Typical fix time 10 min
  • Link out to authoritative sources that support your claims — this demonstrates E-E-A-T and improves credibility
  • External links to reputable sites do not hurt your SEO; Google treats them as a trust signal
  • Use `rel="noopener noreferrer"` on external links; add `rel="nofollow"` only for untrusted or paid links
Why it matters: Outbound links to authoritative sources strengthen the credibility of your content and are considered a positive trust signal by Google. Pages that cite their sources rank better for informational queries than those that make unsupported claims.

Rule Details

Linking out to authoritative external sources is a mark of quality content. It supports your claims, helps users verify information, and reinforces the same trust expectations covered in content citations and Google's outbound-link qualification guidance (opens in new tab).

Code Examples

❌ Avoid — unsupported claim with no source

<p>Studies show that 70% of websites have accessibility issues.</p>
<!-- No link to the study; readers cannot verify -->
<a href="https://example.com/research">View the research</a>
<!-- Missing rel="noopener noreferrer" — security risk -->
<p>According to the
  <a href="https://webaim.org/projects/million/"
     rel="noopener noreferrer">WebAIM Million report</a>,
  over 96% of home pages have detectable WCAG failures.</p>
<p>We recommend
  <a href="https://partner.example.com/"
     rel="sponsored noopener noreferrer">ToolName</a>
  for its ease of use. (Affiliate link)</p>

Why It Matters

  • Trust signals: Google's quality guidelines identify citation of credible sources as evidence of E-E-A-T. Unsupported claims lower trust scores, particularly on informational pages that need the same credibility signals as trust-signals pages.
  • User value: Readers can verify claims, explore topics further, and trust content more when sources are cited.
  • Link equity: Outbound links to reputable sites do not drain your PageRank. Google treats responsible external linking positively, and MDN's rel reference (opens in new tab) helps clarify when to add nofollow, sponsored, or noopener.
Scenariorel attribute
Regular external linknoopener noreferrer
Paid or sponsored linksponsored noopener noreferrer
User-generated contentnofollow noopener noreferrer
Link you cannot vouch fornofollow noopener noreferrer
  1. Crawl the site and extract all <a href> tags pointing to external domains.
  2. Check each external link for rel="noopener noreferrer".
  3. Identify paid/affiliate links missing rel="sponsored".
  4. Review long-form content pages with zero external links — add citations where factual claims are made.
  5. Periodically re-check external links for 404s (use broken link checkers).

Exceptions

  • Necessary utility or compliance pages can be intentionally brief and should not be judged by the same editorial-depth expectations as ranking-focused content.
  • AI-assisted drafting is not a failure by itself; flag unsupported claims, missing editorial review, or low-originality output instead.
  • When a page has both trust-signal issues and crawl/index problems, make the page eligible to rank first and then improve the content quality signals.

Verification

Automated Checks

  • Inspect rendered HTML and HTTP headers to confirm the expected metadata or crawlability signal is present.
  • Test the affected URL with Google Search Console or equivalent tooling where relevant.
  • Re-crawl a representative page set after deployment.

Manual Checks

  • Confirm the change does not create conflicting canonical-url, robots, or structured-data signals.

Use with AI

Copy these prompts to use with your AI assistant, or install the MCP server to use directly from Claude, Cursor, or Windsurf.

Check

Verify implementation

For each content page, count the number of external `<a href>` links pointing to domains other than the current site. Check: (1) Are factual claims backed by links to authoritative sources (government sites, peer-reviewed research, official documentation)? (2) Do all external links have `rel="noopener noreferrer"` for security? (3) Are paid or sponsored links marked with `rel="sponsored"` or `rel="nofollow"`?

Fix

Auto-fix issues

1. Identify factual claims in the content that cite statistics, research, or expert consensus without a source link. 2. Find the authoritative source (study, official documentation, government data) and add an inline link. 3. Add `rel="noopener noreferrer"` to all external links for security. 4. Add `rel="sponsored"` to paid or affiliate links; `rel="nofollow"` to links you cannot vouch for. 5. Avoid linking to competitor sites for their main commercial pages; prefer linking to neutral third parties. Example: Replace "Studies show 60% of users abandon slow pages" with: "According to <a href="https://web.dev/performance/" rel="noopener noreferrer">Google's web.dev research</a>, 60% of users abandon pages that take over 3 seconds to load."

Explain

Learn more

Google uses the context of your outbound links as a signal of content quality. Pages that cite reputable external sources are treated as more trustworthy than those making unsupported assertions. Properly attributed external links also demonstrate E-E-A-T by showing you have researched the topic from primary sources.

Review

Code review

Parse all `<a href>` elements with external URLs (different domain than the site). Verify each external link has `rel="noopener noreferrer"`. Flag paid/affiliate links missing `rel="sponsored"`. Count external links per page — flag pages with zero external links in long-form content (>500 words) that contains factual claims.

Sources

References used to support the guidance in this rule.

Further Reading

Tools and supplementary material for exploring the topic in more depth.

Qualify Outbound Links for SEO | Google Search Central  |  Documentation  |  Google for Developers

You might want to tell Google your relationship with outbound links on your site. Discover how to qualify outbound links with rel attribute values.

Google for DevelopersGuide

Rules that often go hand-in-hand with this one.

Add internal links to key pages

Validates that key pages receive adequate internal links from other site pages

SEO
Fix or remove broken external links

Detects and resolves external links that return error codes or have timed out.

SEO
Add outgoing links to dead-end pages

Pages with no outgoing internal links, potentially trapping users and crawlers

SEO
Use hyphens in URLs

Checks that URL slugs use hyphens as word separators, not underscores or spaces

SEO

Was this rule helpful?

Your feedback helps improve rule quality. This stays internal for now.

Loading feedback...
0 / 385