Created
February 25, 2012 21:09
-
-
Save NinjaPress/1910735 to your computer and use it in GitHub Desktop.
Evitando bots e user-agents maliciosos via .htaccess do Wordpress
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#Block Against User-Agents and Bots | |
<IfModule mod_setenvif.c> | |
SetEnvIfNoCase User-Agent ^$ keep_out | |
SetEnvIfNoCase User-Agent (casper|cmsworldmap|diavol|dotbot) keep_out | |
SetEnvIfNoCase User-Agent (flicky|ia_archiver|jakarta|kmccrew) keep_out | |
SetEnvIfNoCase User-Agent (libwww|planetwork|pycurl|skygrid) keep_out | |
SetEnvIfNoCase User-Agent (purebot|comodo|feedfinder|turnit) keep_out | |
SetEnvIfNoCase User-Agent (zmeu|nutch|vikspider|binlar|sucker) keep_out | |
<Limit GET POST PUT> | |
Order Allow,Deny | |
Allow from all | |
Deny from env=keep_out | |
</Limit> | |
</IfModule> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment