What is a Nofollow Link?

Complete guide to link attributes, PageRank, and their impact on SEO

Henrik Bondtofte
18 min read
Technical Guide
Nofollow link illustration showing link attributes and code
rel="nofollow"

Table of Contents

Definition

A nofollow link is a link that carries the nofollow attribute. The attribute is used to tell search engines that you don't necessarily recommend what is being linked to, but simply want to create a reference.

A nofollow link doesn't transfer PageRank (popularity), but PageRank is only one of several signals that a link can transfer. Links can also transfer trust (credibility) and relevance.

Most people working with links therefore avoid nofollow links as much as possible, but it's important to remember that a natural link profile also contains links with the nofollow attribute.

2005
Nofollow Introduced
To combat spam
2019
Major Changes
Hints not directives
3
Link Attributes
nofollow, sponsored, ugc

Important Rule

Sponsored links or paid links should in principle always carry rel="nofollow" or rel="sponsored". If this is not the case, it's a clear violation of Google's guidelines.

The History Behind Nofollow

2005: Nofollow Introduced

Google, Yahoo, and MSN introduced the nofollow attribute as a weapon against comment spam and other forms of link manipulation.

The goal was to remove the incentive to spam comment fields and forums with links, as these would no longer provide SEO value.

99%
Spam reduction
3
Search engines
Universal
Adoption

2019: Major Changes

Google changed how they treat nofollow links - from "directive" to "hint". This means Google can now choose to follow some nofollow links.

Simultaneously, Google introduced new attributes: rel="sponsored" and rel="ugc" for better categorization.

Hints, not directives
Google's new approach to nofollow

Today: Nuanced Approach

Modern SEO acknowledges that nofollow links still have value - they drive traffic, build brand awareness, and contribute to a natural link profile.

30%
Retained value estimate
Multi-signal
Modern link evaluation

Dofollow vs Nofollow - Key Differences

Dofollow Links (default)

  • βœ“ PageRank transfer: Transfers full link value
  • βœ“ Ranking signal: Direct influence on SERP positions
  • βœ“ Trust flow: Transfers credibility and authority
  • βœ“ Anchor text value: Keywords in anchor text count fully
  • βœ“ Discovery: Helps Google find and index pages
Impact Metrics:
SEO Value:100%
Trust Transfer:High
Ranking Impact:Direct

Nofollow Links

  • βœ— No PageRank: Doesn't transfer link equity
  • ~ Indirect value: May still influence rankings indirectly
  • βœ“ Traffic: Still drives visitors to your site
  • βœ“ Brand awareness: Increases visibility and mentions
  • ~ Trust signals: May contribute to overall trust
Impact Metrics:
SEO Value:15-30%
Trust Transfer:Medium
Ranking Impact:Indirect

Practical Example:

A link from Wikipedia doesn't provide PageRank (since it's nofollow), but can still:

  • β€’ Drive hundreds of visitors
  • β€’ Significantly increase your brand credibility
  • β€’ Function as a trust signal for Google
  • β€’ Inspire others to link (dofollow) to you
Wikipedia Case Study
Average CTR: 2-5%
Brand lift: 15-25%
Secondary links: 10-30%

New Rel Attributes (2019)

In September 2019, Google introduced two new link attributes to provide better context about link types:

Dofollow (default)

When you naturally recommend a page

High
<a href="https://example.com">Link text</a>

Standard link without attributes - Google follows and fully values this link

PageRank:βœ“ Transfers PageRank
Trust:βœ“ Transfers trust
SEO Value:100%
Usage:70-85% of natural profiles

Nofollow

For untrusted pages or user-generated content

Medium
<a href="https://example.com" rel="nofollow">Link text</a>

Link that signals you don't endorse the destination

PageRank:βœ— Doesn't transfer PageRank
Trust:~ May transfer trust
SEO Value:15-30%
Usage:15-25% of natural profiles

Sponsored

All paid links and sponsored collaborations

Low-Medium
<a href="https://example.com" rel="sponsored">Link text</a>

Paid link or sponsored content - required by Google

PageRank:βœ— Doesn't transfer PageRank
Trust:βœ— Limited trust
SEO Value:5-15%
Usage:2-5% of natural profiles

UGC (User Generated Content)

Comments, forum posts, user reviews

Low-Medium
<a href="https://example.com" rel="ugc">Link text</a>

Links from user-generated content like comments and forum posts

PageRank:βœ— Doesn't transfer PageRank
Trust:~ May transfer trust
SEO Value:10-20%
Usage:1-3% of natural profiles

Combined Attributes Best Practices

Recommended Combinations:
rel="sponsored nofollow"

For paid/sponsored content

rel="ugc nofollow"

For user-generated content

Impact on Rankings:
Direct SEO Value:Minimal
Brand Signals:High
Traffic Value:Variable

Technical Implementation

Combined Attributes

You can combine multiple rel attributes in the same link:

<a href="https://example.com" rel="nofollow sponsored">Sponsored link</a>

This tells Google that the link is both sponsored and shouldn't be followed.

WordPress Implementation

In WordPress, you can easily add nofollow attributes:

  • β€’ Manual: Switch to HTML view and add rel="nofollow"
  • β€’ Plugin: Ultimate Nofollow or similar
  • β€’ Block editor: Use link settings in Gutenberg
  • β€’ External links: Automatic nofollow to external links

JavaScript Implementation

For dynamic sites, you can add nofollow via JavaScript:

// Add nofollow to all external links document.querySelectorAll('a[href^="http"]').forEach(link => { if (!link.href.includes(window.location.hostname)) { link.rel = 'nofollow'; } });

Advanced Implementation Patterns

Conditional Nofollow:
// Only add nofollow to untrusted domains const trustedDomains = ['example.com', 'partner.com']; if (!trustedDomains.some(domain => link.href.includes(domain))) { link.rel = 'nofollow'; }
Dynamic Attribute Management:
// Smart attribute assignment based on link context function setLinkAttributes(link, context) { if (context === 'sponsored') link.rel = 'sponsored nofollow'; else if (context === 'ugc') link.rel = 'ugc nofollow'; else if (context === 'untrusted') link.rel = 'nofollow'; }

How to Identify Nofollow Links

Browser Developer Tools

Beginner10 seconds100%
  1. 1. Right-click on the link
  2. 2. Select 'Inspect Element'
  3. 3. Look for rel="nofollow" in the HTML code

NoFollow Browser Extension

BeginnerInstant100%
  1. 1. Install NoFollow extension for Chrome/Firefox
  2. 2. Visit the page
  3. 3. Nofollow links are automatically highlighted

SEO Crawler Tools

Advanced5-30 minutes100%
  1. 1. Use Screaming Frog or similar
  2. 2. Crawl the website
  3. 3. Export all links with attributes

Online Link Checkers

Intermediate2-5 minutes95%
  1. 1. Use tools like Check My Links
  2. 2. Enter the URL to analyze
  3. 3. Review the detailed link report

Pro Tips

Browser Extension: Install NoFollow extension - it makes all nofollow links red and sponsored links orange for instant visibility.

Bulk Analysis: Use tools like Screaming Frog to analyze thousands of links at once and export comprehensive reports.

Do Nofollow Links Have Value?

Yes - In Multiple Ways!

Although nofollow links don't transfer PageRank, they still have significant value for your SEO strategy and online presence.

Direct Benefits

  • βœ“ Traffic: Drives qualified visitors
  • βœ“ Conversions: Can generate sales and leads
  • βœ“ Brand awareness: Increases brand recognition
  • βœ“ Diversity: Creates natural link profiles
Measurable Impact:
Avg. CTR:2-5%
Conversion Rate:1-3%
Brand Lift:10-25%

Indirect Benefits

  • ~ Trust signals: Google may still assess relevance
  • ~ Discovery: Helps with indexing new pages
  • ~ Co-citation: Strengthens topical authority
  • ~ Link magnet: Inspires others to link
SEO Signals:
Relevance Signal:Medium
Trust Factor:Low-Med
Crawl Priority:Yes

Link Profile Analyzer

Profile Health Score:
Dofollow75%
Nofollow20%
Healthy
Profile Assessment

Important to Know

Since Google's 2019 update, nofollow is treated as "hints" rather than directives. This means Google may choose to follow nofollow links in some cases.

Hint
Not directive
Discovery
May still crawl
Context
Matters more

Natural Link Profiles

A natural link profile contains a mix of different link types. Websites that only have dofollow links look suspicious to Google.

Typical Natural Distribution:

Dofollow links70-85%
Nofollow links10-25%
Sponsored/UGC links2-5%

Healthy Signals

  • βœ“ Mix of dofollow and nofollow
  • βœ“ Links from various sources
  • βœ“ Varied anchor text distribution
  • βœ“ Gradual link building over time
  • βœ“ Links from relevant pages
  • βœ“ Natural seasonal variations

Suspicious Patterns

  • βœ— 100% dofollow links
  • βœ— Only links from same type sources
  • βœ— Identical anchor text
  • βœ— Sudden spikes in links
  • βœ— Links from irrelevant pages
  • βœ— No social/nofollow diversity

Profile Health Indicators

Diversity
Source variety
Velocity
Growth rate
Relevance
Topical match
Quality
Authority sources

Common Nofollow Sources

Wikipedia

High

All external links are automatically nofollow

Impact: High - still valuable traffic and brand awareness

Example: Citations and references

Traffic:Very High
Authority:Extremely High

Social Media

Low

Facebook, Twitter, LinkedIn use nofollow

Impact: Medium - good for traffic and social signals

Example: Posts, profiles, comments

Traffic:High
Authority:Medium

Forums & Communities

Medium

Reddit, Quora protect against spam

Impact: Low-Medium - depends on community authority

Example: Forum signatures, answer posts

Traffic:Medium
Authority:Medium

Press Releases

Low

PR services often mark as nofollow/sponsored

Impact: Medium - good for brand awareness and coverage

Example: PRNewswire, Business Wire

Traffic:Low
Authority:High

Directory Listings

Low

Many directories use nofollow automatically

Impact: Low - primarily for local SEO and NAP consistency

Example: Business directories, local listings

Traffic:Low
Authority:Low-Medium

Guest Post Bio

Medium

Many blogs mark author bio links as nofollow

Impact: Medium - depends on blog authority

Example: Author description links

Traffic:Medium
Authority:Medium-High

Comments

Low

Blog comments are typically nofollow to prevent spam

Impact: Low - but can drive targeted traffic

Example: Blog comment signatures

Traffic:Low
Authority:Low

Q&A Sites

Medium

Yahoo Answers, Stack Overflow use nofollow

Impact: Medium - high-quality traffic if relevant

Example: Answer citations and resources

Traffic:Medium
Authority:High

Myths and Misconceptions

Myth: Nofollow links are worthless

High misconception

Reality: They can still drive traffic, build brand awareness, and contribute to natural link profiles

Google can still use them as signals for relevance and trust. They provide valuable referral traffic and brand exposure.

Myth: Google completely ignores nofollow links

Critical to understand

Reality: Google now treats them as 'hints' rather than directives

Since 2019, Google may choose to follow some nofollow links for discovery and other purposes.

Myth: You should never accept nofollow links

Strategy-affecting

Reality: A natural link profile contains both dofollow and nofollow links

100% dofollow links look unnatural to Google. Diverse link profiles are healthier.

Myth: Nofollow links don't count in Google Analytics

Measurement error

Reality: They still drive traffic and can have high value for conversions

Referral traffic from authoritative sites is valuable regardless of the nofollow attribute.

Myth: All social media links are nofollow

Platform misunderstanding

Reality: While most are, some platforms and specific link types may be dofollow

Pinterest, LinkedIn articles, and some Twitter links can be dofollow in certain contexts.

Myth: Sponsored links should always be nofollow

Compliance issue

Reality: Google now prefers rel='sponsored' for better categorization

The new rel='sponsored' attribute provides clearer context to search engines.

Best Practices and Guidelines

When to Use Nofollow

  • β€’ All sponsored/paid links
  • β€’ Links to pages you don't trust
  • β€’ User-generated content (comments)
  • β€’ Internal links to login/admin pages
  • β€’ Links in widgets or footer (if many)
  • β€’ Links to competitors
  • β€’ Temporary or test links

When NOT to Use Nofollow

  • β€’ Links to pages you recommend
  • β€’ Natural editorial links
  • β€’ Links to relevant resources
  • β€’ Internal links to important pages
  • β€’ Links to sources and citations
  • β€’ Partnership links (unless paid)
  • β€’ High-value content recommendations

Google's Guidelines (2024)

Paid links: Must be marked with rel="sponsored" or rel="nofollow"

UGC links: Should be marked with rel="ugc" or rel="nofollow"

Combinations: You can use multiple attributes: rel="nofollow sponsored"

Advanced Implementation Strategy

Strategic Nofollow Usage:
  • β€’ Preserve PageRank flow to important pages
  • β€’ Use nofollow for category/tag pages
  • β€’ Nofollow pagination links
  • β€’ Consider nofollow for sidebar links
Monitoring & Auditing:
  • β€’ Regular link attribute audits
  • β€’ Monitor competitor strategies
  • β€’ Track traffic from nofollow sources
  • β€’ Analyze conversion rates by link type

Link Audit Tools & Techniques

Ahrefs Site Explorer

Comprehensive link audits

From $99/month
Key Features:
  • β€’ Link attribute analysis
  • β€’ Backlink categorization
  • β€’ Historical data
Best For
Comprehensive link audits

SEMrush Backlink Audit

Link risk assessment

From $119/month
Key Features:
  • β€’ Toxic link detection
  • β€’ Attribute filtering
  • β€’ Disavow file generation
Best For
Link risk assessment

Moz Link Explorer

Link quality evaluation

From $99/month
Key Features:
  • β€’ Spam score analysis
  • β€’ Link type filtering
  • β€’ Domain authority metrics
Best For
Link quality evaluation

Google Search Console

Basic link monitoring

Free
Key Features:
  • β€’ Free backlink data
  • β€’ Manual action alerts
  • β€’ Top linking sites
Best For
Basic link monitoring

DIY Link Audit Checklist

Technical Audit:
  • ☐ Identify all nofollow links
  • ☐ Check sponsored link compliance
  • ☐ Verify UGC link markings
  • ☐ Analyze link attribute distribution
  • ☐ Review internal link structure
Performance Analysis:
  • ☐ Track traffic from nofollow sources
  • ☐ Measure conversion rates
  • ☐ Monitor brand mentions
  • ☐ Assess competitive landscape
  • ☐ Evaluate link quality trends

The Future of Link Attributes

Trends We're Seeing

  • β€’ Google getting better at understanding link context
  • β€’ Increased focus on user experience signals
  • β€’ Less weight on traditional PageRank
  • β€’ More nuanced treatment of different link types
  • β€’ AI-powered link quality assessment
  • β€’ Real-time link value adjustments

Future Recommendations

  • β€’ Focus on creating valuable content
  • β€’ Build genuine relationships for natural links
  • β€’ Diversify your traffic sources
  • β€’ Be transparent about sponsored links
  • β€’ Measure user engagement, not just links
  • β€’ Prepare for algorithm evolution

Predictions for 2025-2030

Contextual AI
Better link understanding
User Metrics
UX signals priority
Real-time
Instant link evaluation

Want to Master All Aspects of Link Building?

This article is just the tip of the iceberg. Get the complete guide to link building, including advanced strategies for both dofollow and nofollow links.

Read the Complete Link Building Guide