Enhanced Link Control with feather_nofollow Parameter
Published on
Do not index
Do not index
Added granular control over the
rel="nofollow"
attribute on external links through the feather_nofollow
query parameter.What's New:
?feather_nofollow=false
- Override nofollow behavior, ensuring the link won't getrel="nofollow"
even when the publication's "No Follow External Links" setting is enabled
?feather_nofollow=true
- Force nofollow on any link (existing behavior)
Use Cases:
- Affiliate links that need to pass link equity despite having nofollow enabled globally
- Trusted partner links that should maintain SEO value
- Selective link treatment for sponsored content
Example:
<!-- This external link won't get nofollow, even with noFollowExternalLinks enabled -->
<a href="https://partner-site.com?feather_nofollow=false">Trusted Partner</a>
<!-- This link will always get nofollow -->
<a href="https://example.com?feather_nofollow=true">Sponsored Link</a>
The parameter provides complete override control, giving you link-level precision over SEO attributes regardless of your global publication settings.