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