MetaTagRobot
MetaTag analyzer bot
About this crawler
MetaTagRobot is a web crawler identified by the regular-expression pattern MetaTagRobot\/ in the User-Agent request header. It is categorised as seo. Use the regex above to detect, log, allow, or block MetaTagRobot traffic in your web server, CDN edge rules, or robots.txt.
Block-rate · top 25k sites
No block-rate data for this crawler.
Technical details
- Name
- MetaTagRobot
- Pattern
MetaTagRobot\/- Tags
- seo
- Reference
- http://www.seocentro.com/tools/search-engines/metatag-analyzer.html
- Added
- 2026/05/09
- Instances
- 3 known sample(s)
Sample User-Agent strings
MetaTagRobot/0.2 (http://www.seocentro.com/tools/search-engines/metatag-analyzer.html)
MetaTagRobot/2.0 (http://www.check-domains.com/website-analysis/website-analyzer.php)
MetaTagRobot/2.1 (http://www.seocentro.com/tools/search-engines/metatag-analyzer.html)
Block this crawler
robots.txt — disallow MetaTagRobot:
User-agent: MetaTagRobot
Disallow: /
Apache .htaccess — return 403:
RewriteEngine On
RewriteCond %{HTTP_USER_AGENT} MetaTagRobot\/ [NC]
RewriteRule .* - [F,L]
Nginx — return 403 inside a server block:
if ($http_user_agent ~* "MetaTagRobot\\/") {
return 403;
}
← back to all crawlers