MegaIndex
MegaIndex SEO tool web crawler for analysis
About this crawler
MegaIndex is a web crawler identified by the regular-expression pattern MegaIndex in the User-Agent request header. It is categorised as seo. Use the regex above to detect, log, allow, or block MegaIndex traffic in your web server, CDN edge rules, or robots.txt.
Block-rate · top 25k sites
0.39%
Technical details
- Name
- MegaIndex
- Pattern
MegaIndex- Tags
- seo
- Reference
- https://www.megaindex.ru/create_account.php
- Added
- 2015/03/28
- Instances
- 2 known sample(s)
Sample User-Agent strings
Mozilla/5.0 (compatible; MegaIndex.ru/2.0; +https://www.megaindex.ru/?tab=linkAnalyze)
Mozilla/5.0 (compatible; MegaIndex.ru/2.0; +http://megaindex.com/crawler)
Block this crawler
robots.txt — disallow MegaIndex:
User-agent: MegaIndex
Disallow: /
Apache .htaccess — return 403:
RewriteEngine On
RewriteCond %{HTTP_USER_AGENT} MegaIndex [NC]
RewriteRule .* - [F,L]
Nginx — return 403 inside a server block:
if ($http_user_agent ~* "MegaIndex") {
return 403;
}
← back to all crawlers