TwengaBot
Twenga product search crawler
About this crawler
TwengaBot is a web crawler identified by the regular-expression pattern TwengaBot in the User-Agent request header. It is categorised as seo. Use the regex above to detect, log, allow, or block TwengaBot traffic in your web server, CDN edge rules, or robots.txt.
Block-rate · top 25k sites
0.26%
Technical details
- Name
- TwengaBot
- Pattern
TwengaBot- Tags
- seo
- Reference
- http://www.twenga.com/
- Added
- 2026/05/09
- Instances
- 5 known sample(s)
Sample User-Agent strings
TwengaBot
TwengaBot-2.0
TwengaBot-2.0 Champigny (+http://www.twenga.com/bot.html)
TwengaBot-Discover (http://www.twenga.fr/bot-discover.html)
TwengaBot/1.1 (+http://www.twenga.com/bot.html)
Block this crawler
robots.txt — disallow TwengaBot:
User-agent: TwengaBot
Disallow: /
Apache .htaccess — return 403:
RewriteEngine On
RewriteCond %{HTTP_USER_AGENT} TwengaBot [NC]
RewriteRule .* - [F,L]
Nginx — return 403 inside a server block:
if ($http_user_agent ~* "TwengaBot") {
return 403;
}
← back to all crawlers