rel="nofollow"
in the Webflow CMS Rich Text Editor using Custom Code Mode.rel="nofollow"
to external links using custom JavaScript in the Page Settings footer.Webflow does not provide a built-in option in the Editor to easily add the "nofollow" tag to external links in blog posts and articles. However, you can manually add the attribute using the Rich Text Editor's custom code feature or by modifying the page template.
rel="nofollow"
. Example:<a href="https://example.com" rel="nofollow">External Link</a>
rel="nofollow"
directly in the HTML.<script>document.querySelectorAll('a[href^="http"]').forEach(link => { if (!link.href.includes(window.location.hostname)) { link.setAttribute("rel", "nofollow"); }});</script>
Webflow does not have a built-in option for "nofollow" links in the Editor. However, you can manually insert rel="nofollow"
in individual links using the Custom Code Mode, use embedded HTML, or apply JavaScript to enforce it site-wide.