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