Demonstration / test project. Educational examples only; no commercial services or customer claims.

Guide

Access and inclusion are different questions

Crawling is the process of requesting and reading resources. Indexing is a search engine's decision about storing and using information in its search system. Permission to crawl does not guarantee indexing, and a page that appears accessible in a browser may still carry a directive asking search engines not to index it.

A robots.txt file describes crawling rules for cooperating crawlers. A page-level robots meta tag can communicate instructions such as noindex. These mechanisms operate at different points. If a crawler cannot retrieve a page, it may be unable to observe a directive contained inside that page.

Inspect the whole response

Check the response status, relevant headers, HTML directives, and robots.txt rules together. Also record the page's intended role. An account screen, internal search result, or temporary preview may intentionally be excluded. A public guide intended to be discoverable may have inherited a directive from a staging environment.

Do not infer actual search inclusion from a successful HTTP response or an index-permitting tag. Those observations establish eligibility signals, not the state of a search engine's index. A verified inspection result from the relevant search property supplies different evidence and can still have its own observation time and limitations.

Avoid broad fixes

Changing a site-wide rule to repair one page can expose many unrelated addresses. Prefer identifying the narrow source of a directive, explaining the intended audience, and preparing a reversible change. Keep production permissions separate from the evidence-gathering step.