Skip to content
CertoflowCertoflow
SEO Tools

Robots Meta Tag Generator — noindex & nofollow Tool

Generate robots meta directives.

Last updated: August 2026

Quick reference

What this calculator does
Generate robots meta tags with index, follow, noarchive, and nosnippet directives.
How it works
Toggle index/noindex, follow/nofollow, and optional noarchive and nosnippet — the generator outputs one copy-ready meta tag.
Example
noindex + follow → <meta name="robots" content="noindex, follow" />
When to use it
When a specific page needs crawl or indexing control that robots.txt cannot provide at the page level.

Guide

Introduction

Not every page on your site should appear in Google. Thank-you pages, internal search results, staging previews, and thin duplicate content often need to stay out of the index — but you may still want crawlers to follow links on those pages. robots.txt blocks crawling entirely; robots meta tags control indexing and snippet behavior per page after a URL is crawled. Writing the correct comma-separated directive by hand is easy to get wrong when you are juggling noindex, nofollow, noarchive, and nosnippet combinations.

Certoflow's Robots Meta Tag Generator builds a single <meta name="robots"> element from checkbox selections. Toggle index and follow behavior, add optional noarchive or nosnippet flags, and copy the output into your page head. Processing runs entirely in your browser — internal URL policies and unreleased pages never upload to a server.

For site-wide crawl rules, use the Robots.txt Generator. For duplicate URL consolidation, pair page-level robots directives with Canonical Tag Generator output.

What this tool does

The generator presents directive toggles and produces one meta tag:

FeatureBehavior
index checkboxChecked = index; unchecked = noindex
follow checkboxChecked = follow; unchecked = nofollow
noarchive checkboxAdds noarchive when checked
nosnippet checkboxAdds nosnippet when checked
GenerateOutputs formatted meta tag string
CopyOne-click copy to clipboard

Default checkboxes start with index and follow enabled — the standard permissive configuration for public content pages.

How it works

Certoflow's generateRobotsMetaTag function assembles the content attribute from selected options:

<meta name="robots" content="index, follow" />

Directive assembly rules:

  1. First token is always index or noindex
  2. Second token is always follow or nofollow
  3. Optional noarchive appended if selected
  4. Optional nosnippet appended if selected

Common combinations:

Use caseDirectives
Public blog postindex, follow
Thank-you pagenoindex, follow
User profile (no link equity)noindex, nofollow
Cached sensitive pagenoindex, follow, noarchive
Prevent snippet displayindex, follow, nosnippet

All processing runs client-side with no network calls.

Worked example

A checkout confirmation page should not appear in search results but should pass link equity to linked help articles:

SettingValue
indexunchecked (noindex)
followchecked
noarchiveunchecked
nosnippetunchecked

Generated output:

<meta name="robots" content="noindex, follow" />

Paste into the <head> of the confirmation page template.

Real-world examples

E-commerce order confirmation

Post-purchase pages contain transaction IDs and personal details. noindex, follow keeps them out of search while allowing crawlers to discover linked support content.

Internal site search results

Search result URLs with query parameters create infinite thin pages. noindex, follow prevents index bloat without blocking navigation discovery.

Staging environment behind basic auth

Even with authentication, adding noindex, nofollow on staging templates provides defense in depth if credentials leak.

PDF landing pages with duplicate content

A whitepaper exists as both HTML and PDF. The PDF page gets noindex, follow while the HTML version remains indexable with a canonical tag.

Press release embargo lift

Before launch: noindex, nofollow. After embargo: regenerate as index, follow and replace the meta tag in the CMS.

Common mistakes

Using robots.txt when meta robots is needed. robots.txt prevents crawling; it does not reliably remove already-indexed pages. noindex requires the page to be crawled to read the directive.

Applying noindex site-wide in robots.txt. A Disallow rule does not equal noindex. Pages blocked in robots.txt may still appear in results without snippet content.

Conflicting robots meta and X-Robots-Tag. HTTP headers and HTML meta tags should agree. Conflicting directives confuse crawlers.

noindex on pages you want ranked. Verify staging-only and utility pages get noindex, not product or blog templates.

Forgetting to remove noindex after launch. Staging templates copied to production sometimes ship with noindex still enabled — a common launch-day SEO incident.

Expecting nofollow to hide pages. nofollow prevents passing link equity; it does not prevent indexing if other signals point to the URL.

Use cases

CMS template configuration — Generate reference meta tags for page type templates (blog, checkout, search).

Migration QA — Audit which page types carry noindex before and after replatforming.

Client SEO deliverables — Document recommended directives per page category.

Developer pull requests — Include generated tags in PR descriptions for marketing page changes.

Incident response — Quickly produce noindex tags when sensitive content is accidentally published.

FAQ

Robots meta vs robots.txt?

robots.txt blocks crawling of matching URLs. Meta robots controls indexing and snippet behavior for a specific page that was crawled. Use both for different purposes.

When should I use noindex?

On thank-you pages, internal search results, duplicate content you do not want in Google, staging pages, and thin utility pages with no search value.

What does noarchive do?

It asks search engines not to show cached copies of the page in search results. Useful for frequently updated or time-sensitive content.

What does nosnippet do?

It prevents search engines from displaying a text snippet or video preview in results. The page may still be indexed and ranked.

Can I combine noindex and nofollow?

Yes. noindex, nofollow tells crawlers not to index the page and not to follow its outbound links — common for login pages and private areas.

Is my configuration sent to Certoflow?

No. Generation runs locally in JavaScript. No data leaves your device.

Can I use this offline?

After the page loads once, generation works offline because logic runs entirely client-side.

Should noindex pages be in the sitemap?

Generally no. Remove noindex URLs from your XML Sitemap Generator output to avoid sending conflicting signals.

Frequently Asked Questions

Robots meta vs robots.txt?
robots.txt blocks crawling; meta robots controls indexing of a specific page that was crawled.
When should I use noindex?
Use noindex on thank-you pages, internal search results, or duplicate content you do not want in Google.

Related tools that complement this workflow.