woorankreview
WooRank web crawler for SEO analysis
About this crawler
woorankreview is a web crawler identified by the regular-expression pattern woorankreview\/ in the User-Agent request header. It is categorised as seo. Use the regex above to detect, log, allow, or block woorankreview traffic in your web server, CDN edge rules, or robots.txt.
Block-rate · top 25k sites
0.33%
Technical details
- Name
- woorankreview
- Pattern
woorankreview\/- Tags
- seo
- Reference
- https://www.woorank.com/
- Added
- 2023/08/16
- Instances
- 2 known sample(s)
Sample User-Agent strings
Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1 (compatible; woorankreview/2.0; +https://www.woorank.com/)
Mozilla/5.0 (compatible; woorankreview/2.0; +https://www.woorank.com/)
Block this crawler
robots.txt — disallow woorankreview:
User-agent: woorankreview
Disallow: /
Apache .htaccess — return 403:
RewriteEngine On
RewriteCond %{HTTP_USER_AGENT} woorankreview\/ [NC]
RewriteRule .* - [F,L]
Nginx — return 403 inside a server block:
if ($http_user_agent ~* "woorankreview\\/") {
return 403;
}
← back to all crawlers