Issue: The nofollow
attribute on outgoing external links tells search engines not to follow the link, which means no SEO value (link juice) is passed to the linked page. Unintentionally using nofollow
may affect your SEO efforts and the crawling process.
Fix: Check your external links and remove nofollow
attributes where they’re unnecessary or used by mistake.
How to Fix for Beginners
- Identify Nofollow Links: Search for
<a>
tags in your code that containrel="nofollow"
.- Example:
<a href="https://example.com" rel="nofollow">Visit Example</a>
- Example:
- Decide If Nofollow Is Needed:
- Keep
nofollow
for links to untrusted sources, paid content, or affiliate links. - Remove
nofollow
for credible external links that enhance user experience and add value.
- Keep
- Edit the Link Tags: Remove the
rel="nofollow"
attribute for links you want to pass link juice.- Example: Change
<a href="https://trustedsite.com" rel="nofollow">Trusted Site</a>
to<a href="https://trustedsite.com">Trusted Site</a>
.
- Example: Change
- Audit Regularly: Use SEO tools to scan for nofollow attributes in outgoing links and review them periodically.
Tip: Use nofollow strategically to balance SEO benefits and compliance with linking policies.