Search
Get your page back into search results
Your page carries a noindex instruction, which tells search engines to leave it out of search results completely.
Why it matters
A noindex instruction is a deliberate switch, and it is almost always left switched on by mistake after a site was built on a staging address. If it is on the live site, search engines that have read it will drop the page, and no amount of ranking work elsewhere will bring it back until the instruction is gone and the page has been read again.
How you would notice it
- Searching for your business name does not show your site, even though the site is online for anyone who types the address.
- A staging or preview address is what appears in search results instead of your real one.
- Google Search Console or an SEO plugin reports a noindex warning.
What to do
Stage 1
- Open the page and look at its source for the instruction. In most browsers this is View Source or View Page Source, then search the page for noindex.
If you find this line in the head section, that is the cause. The rest of this page is about removing it safely.
<meta name="robots" content="noindex">Stage 2
- Check whether the same instruction is being sent as a response header, because hosts and CDNs can set it without touching your HTML at all.
The header wins even when your HTML is clean, so check both before concluding you are clear.
curl -I https://yourdomain.com/
# look for: X-Robots-Tag: noindexStage 3
- Remove the noindex value from the live site only. Delete just the word noindex, or delete the whole robots meta line if it holds nothing else.
Leave the staging copy hidden. Keeping the preview address out of search results is correct, not a mistake to clean up.
- If you also block crawling in robots.txt, allow crawling again at the same time or before you remove the tag.
A disallow rule stops search engines visiting the page, so they never see that you removed the instruction. This is the most common reason a corrected page stays invisible.
User-agent: *
Allow: /Stage 4
- Ask for the page to be read again rather than waiting for the next scheduled visit.
In Google Search Console, open the URL Inspection tool for the page and request indexing. Without that step the change can take weeks to be noticed.
How to check it worked
Confirm it worked
Re-run the Siege Test and confirm the noindex recommendation is gone. Then view the page source in a browser and confirm the word noindex appears neither in the head nor in the response headers. Recovery in search results is not instant, so the test passing confirms the instruction is gone rather than proving you rank again.