Zum Inhalt springen

Remove a blocking noindex

Etwa 5 Min.

A robots meta noindex (or CMS “hide from search”) keeps the URL out of search. Remove it if the page should be found. Follow the steps below on your stack, then re-check the live URL.

A robots meta noindex (or CMS “hide from search”) keeps the URL out of search. Remove it if the page should be found.

Wir merken uns das in diesem Browser, damit die nächste Anleitung denselben Stack verwendet.

At a glance

Time~5 min
CategorySEO
Steps3
StacksWordPress, Shopify, Webflow, Next.js, HTML, more

Schritte

  1. Find <meta name="robots"> in page source.

  2. If the page should be indexed, remove noindex or set content="index, follow".

  3. Check the CMS “discourage search engines” / per-page noindex toggle.

In HTML / static

Serve /robots.txt at the origin with Allow rules for retrieval crawlers.

Snippet
<!-- Indexed: omit robots, or use: -->
<meta name="robots" content="index, follow">

FAQ

What does “Remove a blocking noindex” fix?
A robots meta noindex (or CMS “hide from search”) keeps the URL out of search. Remove it if the page should be found.
How long does this usually take?
About 5 minutes on most CMS and code stacks when you already have access to edit the page.
Where do I start?
Start with: Find <meta name="robots"> in page source. Then use the platform picker on this page for placement notes.