I use following rule to block requests based on some User Agents using modRewrite
RewriteCond %{HTTP_USER_AGENT} ^.*(SCspider|PetalBot|ZyBorg).*$ [NC]
RewriteRule ^.*$ - [F,L]
OR
RewriteCond %{HTTP_USER_AGENT} ^.*(SCspider|PetalBot|ZyBorg).*$ [NC]
RewriteRule .* - [F,L]
But I need to know if there is any better way (quick & fast) and less resource consumption to block/drop the requests
appreciate for any help