This line:
Code:
SetEnvIfNoCase User-Agent "^Wget" bad_bot
makes the following two lines unnecessary:
Code:
SetEnvIfNoCase User-Agent "^Wget/1.5.3" bad_bot
SetEnvIfNoCase User-Agent "^Wget/1.6" bad_bot
and if you use this:
Code:
<Limit GET POST>
Order Allow,Deny
Allow from all
Deny from env=bad_bot
</Limit>
this blocks Wget completely.
While this:
Code:
<Files ~ "\.(html|pdf|mp3|zip|rar|exe|gif|jpe?g|png|php|jsp) $">
Order Allow,Deny
Allow from all
Deny from env=bad_bot
</files>
would block only the related extensions.