On-page SEO4 min read

🌐External Link Best Practices

Use outbound links strategically to build authority and provide value.

What are External Links?

External links are hyperlinks that point from your website to pages on a different domain. Unlike internal links that connect pages within your own site, external links send visitors to other websites—providing additional resources, citations, and references.

Every external link consists of the destination URL and the anchor text (clickable text). When you link to another site, you're essentially vouching for that content and directing your users—and search engine crawlers—to that resource.

External vs Internal Links

AspectExternal LinksInternal Links
DestinationDifferent domainSame domain
PurposeCite sources, provide resourcesNavigation, distribute authority
Link equityPasses to external siteStays within your site
User behaviorOpens new tab (recommended)Same tab

External links signal that your content is well-researched and connected to the broader web ecosystem. They're a natural part of a healthy link profile.

Why External Links Matter for SEO

External linking might seem counterintuitive—why send visitors away? But strategic external linking actually benefits your SEO and user experience in several ways.

Authority and Credibility

Linking to authoritative sources demonstrates that your content is well-researched and trustworthy. Search engines like Google use external links to understand the context and quality of your content. When you cite reputable sources, you strengthen your E-E-A-T signals (Experience, Expertise, Authoritativeness, Trustworthiness).

User Value

External links provide additional value to your readers by:

  • Offering deeper dives on complex topics
  • Providing evidence and citations for claims
  • Connecting users to tools, resources, and further reading

Citation and Reference Value

Just as academic papers cite sources, web content benefits from linking to original research, data sources, and authoritative references. This citation behavior helps search engines understand your content's place in the information ecosystem.

Relationship Building

Linking to other websites can foster relationships with peers in your industry. Many site owners track their backlinks and may reciprocate with links or social shares, expanding your reach.

Security Attributes (noopener, noreferrer, nofollow)

When linking to external sites, especially with target="_blank", security attributes protect your users and your site from potential vulnerabilities.

The target="_blank" Security Risk

Links that open in new tabs using target="_blank" create a potential security vulnerability called tabnabbing. The opened page gains access to your page via window.opener, allowing it to:

  • Redirect your page to a phishing site
  • Access information about your users

noopener and noreferrer

noopener prevents the opened page from accessing your page's window.opener property, blocking tabnabbing attacks. noreferrer goes further by also hiding the referrer information—the external site won't know where the traffic came from.

Best practice: Always use both noopener and noreferrer together with target="_blank" for maximum security.

When to Use Each Attribute

AttributePurposeWhen to Use
noopenerBlocks tabnabbingAll target="_blank" links
noreferrerHides referrerWhen you don't want to reveal your URL
nofollowPrevents link equity passingSponsored/UGC content

The code example below shows the correct, secure pattern.

HTML
<a href="https://example.com" target="_blank" rel="noopener noreferrer">
  Visit Example Site
</a>

Secure external link with noopener and noreferrer attributes

When to Use Nofollow

The nofollow attribute tells search engines not to pass link equity (sometimes called "link juice") to the linked page. It's essentially saying "I'm linking here, but I'm not endorsing this content."

Google's Link Attribute Guidelines

Google recognizes three link attribute types:

rel="sponsored" — For paid links, sponsorships, and advertising relationships. Required for affiliate links and paid placements.

rel="ugc" — For User-Generated Content like comments, forum posts, and user-submitted content. Helps manage links you don't directly control.

rel="nofollow" — For cases where you want to link but not endorse. This is also appropriate when you're unsure about the quality of the destination.

When to Use Each

ScenarioAttribute
Paid/affiliate linksrel="sponsored" or rel="nofollow sponsored"
User comments/forumsrel="ugc" or rel="nofollow ugc"
Untrusted linksrel="nofollow"
Editorial links to trusted sitesNo special attribute needed

You can combine attributes—for example, rel="nofollow noopener noreferrer" for sponsored links that open in new tabs.

HTML
<a href="https://sponsored-site.com" rel="nofollow sponsored">
  Sponsored Partner
</a>

<a href="https://user-comment-link.com" rel="ugc">
  User Submitted Link
</a>

Sponsored link and UGC link with appropriate attributes

Common External Linking Mistakes

Avoid these common pitfalls when linking to external sites:

1. Missing Security Attributes on target="_blank"

Opening external links in new tabs without noopener and noreferrer creates a security vulnerability. Always include these attributes with target="_blank".

Impact: Users could be exposed to tabnabbing attacks.

2. Excessive External Links

Too many external links can dilute your page's value and send users away from your content. Keep external links relevant and purposeful.

Guideline: Focus on quality over quantity. 3-5 well-chosen external links are better than 20 random ones.

3. Broken External Links (Link Rot)

External pages move, change, or disappear. Broken links (404 errors) hurt user experience and waste crawl budget.

Solution: Periodically audit external links using tools like Screaming Frog, Ahrefs, or Google Search Console. Fix or remove broken links.

4. Linking to Low-Quality or Spammy Sites

Linking to untrustworthy sites can harm your own site's reputation. Search engines may associate your site with "bad neighborhoods."

Guideline: Before linking, check the destination site's quality, reputation, and security (HTTPS). Avoid linking to:

  • Sites with excessive ads or pop-ups
  • Known spam or malware sites
  • Sites with poor content quality

5. Not Opening External Links in New Tabs

For user experience, external links should typically open in new tabs so users don't lose their place on your site.

SEO Checklist

  • CriticalAdd rel="noopener noreferrer" to all target="_blank" links
  • CriticalUse rel="nofollow sponsored" for paid and affiliate links
  • ImportantLink to reputable, authoritative sources only
  • ImportantCheck external links periodically for broken pages (404s)
  • ImportantUse rel="ugc" for user-generated content links
  • RecommendedOpen external links in new tabs for better UX
  • RecommendedAvoid excessive external links on a single page

Related Guides