Saltar al contenido

Remove a blocking noindex

Unos 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.

Lo recordamos en este navegador para que la siguiente guía use el mismo CMS.

At a glance

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

Pasos

  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.

En 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.