01
Block all crawling
Add this to the /robots.txt file at the root of your hostname.
User-agent: Crawlandbot
Disallow: /
Crawlandbot discovers public pages for a searchable web index. It checks each site’s rules before requesting pages, moves slowly on each host, and gives site owners clear control.
How it works
Every crawl starts with a fresh check rather than assuming old permission still applies.
We fetch the host’s robots file and stop if Crawlandbot is not allowed.
Declared sitemaps help us find public URLs without guessing unnecessary paths.
Every sitemap URL and discovered link is compared with the active robots policy.
Pages marked noindex are not indexed; nofollow links are not followed.
Technical details
Requests identify themselves with the following HTTP user-agent:
Crawlandbot/1.0 (+https://crawlandbot.klcdev.com/)
Runs use explicit page, host, depth, and download-size limits.
Different hosts may run in parallel, but each host stays sequential and rate-limited.
Private and local network addresses are rejected before requests are made.
Robots blocks, page-level exclusions, and manual suppression requests are enforced.
Site-owner controls
Choose the control that matches what you want. Changes are checked at the beginning of every new crawl.
01
Add this to the /robots.txt file at the root of your hostname.
User-agent: Crawlandbot
Disallow: /
02
List only the areas you do not want requested.
User-agent: Crawlandbot
Disallow: /private/
Disallow: /archive/
03
Allow a page to be fetched but keep it out of the index.
<meta name="Crawlandbot"
content="noindex, nofollow">