How Search works: from discovery to the result
Understand the stages that move a page from a link on the web to a possible search result, then diagnose the first stage that is actually failing.
CRAWL CONTROL
robots.txt tells compliant crawlers which paths they may fetch. It is a crawl-management file—not authentication and not a dependable way to remove already discoverable URLs from an index.
Start for freeTHE SHORT ANSWER
Use robots.txt to express an intentional crawl policy at the site root. Do not use it to protect sensitive content, and do not block a URL when a crawler must fetch it to see a new noindex directive.
PRACTICAL WORKFLOW
Keep every observation dated and every change tied to the earliest demonstrated issue.
Decide whether each path is public, private, useful only in a session, or intentionally unavailable before writing a rule.
Target only the paths that match the crawl policy. Avoid broad rules that accidentally hide public assets or pages.
Check expected allow and disallow cases, including query patterns and critical resources used to render public pages.
Publish the file at the site root, retain the previous version, and monitor the affected paths after release.
RELEASE CHECKS
These checks make the diagnosis repeatable for another teammate.
COPYABLE TEMPLATE
Copy this into a release ticket or investigation record, then complete it for a representative URL.
Goal: [what should or should not be fetched]
Affected paths: [examples]
User agent: [agent or *]
Allowed public pages: [examples]
Blocked crawl paths: [examples]
Test URLs: [allow and disallow cases]
Owner and rollback: [details]WHY THIS MATTERS
A private page needs real access control. A page you want removed from search needs an appropriate removal or indexing-control path that can be observed by a crawler when required. Put robots.txt in the smaller job it can reliably do: limiting fetches from paths that should not consume crawl activity.
KEEP LEARNING
Understand the stages that move a page from a link on the web to a possible search result, then diagnose the first stage that is actually failing.
A disciplined URL Inspection workflow keeps the processed record, the current live response, and the work you still need to observe separate.
A noindex directive tells crawlers not to include a page or resource in their index when they can fetch and process the directive. It is not a security control and it should match the page’s intended public state.
An XML sitemap is a structured discovery hint. It works best when it contains the clean canonical URLs you want crawlers to find—not every address your application can generate.
Frequently asked questions
Bounded answers for the checks that most often get conflated.
No. It is not an access-control system. Require authentication or another appropriate protection for private material.
Not reliably. If a crawler cannot fetch the page, it cannot read page-level noindex instructions. Use the removal approach appropriate to the page state instead.
PUT THE WORKFLOW TO USE
Use Spacebrain to organize the work, the evidence, and the next owner around every release.
Start for free