V
voilabot
Voila search engine web crawler bot
About this crawler
voilabot is a web crawler identified by the regular-expression pattern voilabot in the User-Agent request header. It is categorised as search-engine. Use the regex above to detect, log, allow, or block voilabot traffic in your web server, CDN edge rules, or robots.txt.
Block-rate · top 25k sites
0.065%
Technical details
- Name
- voilabot
- Pattern
voilabot- Tags
- search-engine
- Added
- 2010/05/18
- Instances
- 2 known sample(s)
Sample User-Agent strings
Mozilla/5.0 (Windows NT 5.1; U; Win64; fr; rv:1.8.1) VoilaBot BETA 1.2 ([email protected])
Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1) VoilaBot BETA 1.2 ([email protected])
Block this crawler
robots.txt — disallow voilabot:
User-agent: voilabot
Disallow: /
Apache .htaccess — return 403:
RewriteEngine On
RewriteCond %{HTTP_USER_AGENT} voilabot [NC]
RewriteRule .* - [F,L]
Nginx — return 403 inside a server block:
if ($http_user_agent ~* "voilabot") {
return 403;
}
← back to all crawlers