B
betaBot
BetaBot web crawler for testing
About this crawler
betaBot is a web crawler identified by the regular-expression pattern betaBot in the User-Agent request header. It is categorised as seo. Use the regex above to detect, log, allow, or block betaBot traffic in your web server, CDN edge rules, or robots.txt.
Block-rate · top 25k sites
0.13%
Technical details
- Name
- betaBot
- Pattern
betaBot- Tags
- seo
- Added
- 2016/01/23
- Instances
- 0 known sample(s)
Sample User-Agent strings
no public sample user-agents recorded.
Block this crawler
robots.txt — disallow betaBot:
User-agent: betaBot
Disallow: /
Apache .htaccess — return 403:
RewriteEngine On
RewriteCond %{HTTP_USER_AGENT} betaBot [NC]
RewriteRule .* - [F,L]
Nginx — return 403 inside a server block:
if ($http_user_agent ~* "betaBot") {
return 403;
}
← back to all crawlers