They are sending lots of bots to my site & trying to hack into a non-existent wp site ;}
deny from wholesaleinternet.com
# Don't Use This on a WP Site!
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{REQUEST_URI} admin [NC,OR]
RewriteCond %{REQUEST_URI} administrator [NC,OR]
RewriteCond %{REQUEST_URI} applications/Install [NC,OR]
RewriteCond %{REQUEST_URI} backup [NC,OR]
RewriteCond %{REQUEST_URI} bitrix [NC,OR]
RewriteCond %{REQUEST_URI} catalog [NC,OR]
RewriteCond %{REQUEST_URI} configuration.php [NC,OR]
RewriteCond %{REQUEST_URI} ckeditor [NC,OR]
RewriteCond %{REQUEST_URI} editor [NC,OR]
RewriteCond %{REQUEST_URI} fckeditor [NC,OR]
RewriteCond %{REQUEST_URI} filemanager [NC,OR]
RewriteCond %{REQUEST_URI} news [NC,OR]
RewriteCond %{REQUEST_URI} oscommerce [NC,OR]
RewriteCond %{REQUEST_URI} ror.xml [NC,OR]
RewriteCond %{REQUEST_URI} shop [NC,OR]
RewriteCond %{REQUEST_URI} wp [NC,OR]
RewriteCond %{REQUEST_URI} wordpress [NC,OR]
RewriteCond %{REQUEST_URI} wp-admin [NC,OR]
RewriteCond %{REQUEST_URI} wp-login.php [NC,OR]
RewriteCond %{REQUEST_URI} urllist.txt [NC,OR]
RewriteCond %{REQUEST_URI} user [NC,OR]
RewriteCond %{REQUEST_URI} xmlrpc.php
RewriteRule ^(.*)$ [
%{REMOTE_ADDR}...] [R,L]
</IfModule>