Robots allowed
The robots policy allows access to browsers and scrapers.
The robots policy allows access to browsers and scrapers.
A podcast overview related to Robots allowed made with Google NotebookLM.
(How ScanGov measures tasklist priorities.)
As a search engine crawler, I want to read the robots.txt file so that I know which parts of the website I am allowed or disallowed to index.
(ScanGov messaging when a site fails a standard)
Robots policy blocks browsers or scrapers.
All government websites must allow robots indexing and following.
Robots allowed in a robots.txt file means search engines like Google are allowed to look at and list (or “crawl”) the page in search results. Website owners use robots.txt to tell search engines what they can and can’t see. If robots are allowed, the site or page can show up in search engines, making it easier for people to find.
Example government website robots.txt files:
Example robots.txt code:
# Only applies to search.gov scraping
User-agent: usasearch
# Slow amount of requests
Crawl-delay: 2
# Specify it can read /archive/
Allow: /archive/
# Applies to all scrapers
User-agent: *
# Slow amount of requests to 1 every 10 seconds
Crawl-delay: 10
# Don't let them read /archive/
Disallow: /archive/
# Point to a sitemap file
Sitemap: /sitemap.xml
Example robots meta code:
<!-- This page can be indexed
and links on it can be followed -->
<meta name="robots" content="index, follow">
Example X-Robots-Tag:
# This URL can be indexed
# and links on it can be followed
X-Robots-Tag: index, follow