Remove a blocking noindex
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 |
|---|---|
| Category | SEO |
| Steps | 3 |
| Stacks | WordPress, Shopify, Webflow, Next.js, HTML, more |
Schritte
Find <meta name="robots"> in page source.
If the page should be indexed, remove noindex or set content="index, follow".
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.