<meta name="robots" content="noindex, nofollow">
in the CMS Template’s Page Settings > Custom Code to prevent indexing.noindex
tag.To prevent Google from indexing CMS item pages in Webflow, the recommended approach is to use noindex
meta tags, not nofollow
, and optionally update the robots.txt file. Here's how to do it:
noindex
vs nofollow
noindex
prevents the page from appearing in search results.nofollow
tells crawlers not to follow links on the page, but does not prevent indexing.noindex
, not nofollow
.noindex
Meta Tag to All CMS Pages<meta name="robots" content="noindex, nofollow">
Go to Project Settings → SEO tab.
In the robots.txt field, you can disallow specific CMS paths, e.g.:
Disallow: /blog/
However, robots.txt only blocks crawling, not indexing if another site links to the page.
Google may still index CMS pages if they’re linked externally unless a noindex
meta tag is present.
To reliably keep CMS item pages out of Google search, use a <meta name="robots" content="noindex, nofollow">
tag inside the CMS Template's Page Settings > Custom Code section. You can optionally use robots.txt to prevent crawling, but it's not sufficient alone.