.htaccess for blocking bad bots
Im getting way too much crap from the bots
YandexBot
AhrefsBot
MJ12bot
Anyone successful block them with a .htaccess
i found this one below
SetEnvIfNoCase User-Agent .*sitebot.* bad_bot
<Limit GET POST HEAD>
Order Allow,Deny
Allow from all
Deny from env=bad_bot
</Limit>
|