Difference between revisions of "Htaccess Deny"

From TNG_Wiki
Jump to navigation Jump to search
(→‎References: updated references)
Line 34: Line 34:
  
 
* [http://blamcast.net/articles/block-bots-hotlinking-ban-ip-htaccess How To Block Bots, Ban IP Addresses With .htaccess]
 
* [http://blamcast.net/articles/block-bots-hotlinking-ban-ip-htaccess How To Block Bots, Ban IP Addresses With .htaccess]
 +
 +
* [http://www.inmotionhosting.com/support/website/security/block-unwanted-users-from-your-site-using-htaccess Block unwanted users from your site using .htaccess]
  
 
== Related links ==
 
== Related links ==

Revision as of 16:34, 11 February 2015

Note that malware or email harvesting bots will ignore the directives of the robots.txt file, you must create an entry in your .htaccess file.

The following example was provided by Gustave Dahl on User2 list 11/12/2009 11:05 PM


BrowserMatchNoCase PiplBot bad_bot
BrowserMatchNoCase MJ12bod bad_bot
Order Deny, Allow
Deny from env=bad_bot

ICDSoft support also provided the following as a another way to ban bots


SetEnvIfNoCase User-Agent "Yahoo" badBot
SetEnvIfNoCase User-Agent "bingbot" badBot
SetEnvIfNoCase User-Agent "MJ12bot" badBot
SetEnvIfNoCase User-Agent "Yandex" badBot
SetEnvIfNoCase User-Agent "BaiDuSpider" badBot
SetEnvIfNoCase User-Agent "Mail.ru" badBot
Deny from env=badBot


References

Provided by Gustave Dahl on User2 list on 13 Nov 2009

See also:

Related links

The following provide additional security measures:

Controlling Site Access

Protecting Resources

Checking your site for Malware