|
If I put this in my .htaccess file, will it work?
SetEnvIfNoCase User-Agent "^Missigua Locator" bad_bot
SetEnvIfNoCase User-Agent "^EmailSiphon" bad_bot
SetEnvIfNoCase User-Agent "^EmailWolf" bad_bot
SetEnvIfNoCase User-Agent "^Mac Finder" bad_bot
<Directory "/">
Order Allow,Deny
Allow from all
Deny from env=bad_bot
</Directory>
|