kypros
10-28-2008, 01:07 PM
As the title says, some joker has duplicated my site. However, the way that it was done leaves me unsure of how to fix it.
The person has domains that are not hosted anywhere. The domains simply point to my IP address. In other words, a reverse IP lookup on my (dedicated) IP address reveals 14 domains associated with the IP number instead of just my domain.
So if my site is aaa.com, there are domains out there of bbb.com, ccc.com, ddd.com, etc... that when loaded are just loading my content.
After speaking to Hostmonster support they sent me a link to this site:
http://www.javascriptkit.com/howto/htaccess14.shtml
There are similar sites here:
http://www.tamingthebeast.net/articles7/blocking-referrer-traffic.htm
http://www.htaccesstools.com/block-hitbots/
So I tried doing this to block out the offending domains. I tried the code from the first link above first and it did not block my content from the offending domains. It did stop all images from working on bbb.com, ccc.com, etc... but not the text.
Below is my htaccess file after I put in the code. (The format of the code is from the third site that I wrote above.) The first 4 lines of the file were already there.
<Files 403.shtml>
order allow,deny
allow from all
</Files>
RewriteEngine on
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?bbb.com.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?ccc.com.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?ddd.com.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?eee.com.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?fff.com.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?ggg.com.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?hhh.com.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?iii.com.*$ [NC]
RewriteRule .* - [F,L]
As mentioned, this has prevented the loading of any images on the other sites(and in my Cubecart admin as well). My site is working fine and always has been throughout this.
But how can I prevent any and all content going to these bogus domains? Any help would be appreciated.
-K
The person has domains that are not hosted anywhere. The domains simply point to my IP address. In other words, a reverse IP lookup on my (dedicated) IP address reveals 14 domains associated with the IP number instead of just my domain.
So if my site is aaa.com, there are domains out there of bbb.com, ccc.com, ddd.com, etc... that when loaded are just loading my content.
After speaking to Hostmonster support they sent me a link to this site:
http://www.javascriptkit.com/howto/htaccess14.shtml
There are similar sites here:
http://www.tamingthebeast.net/articles7/blocking-referrer-traffic.htm
http://www.htaccesstools.com/block-hitbots/
So I tried doing this to block out the offending domains. I tried the code from the first link above first and it did not block my content from the offending domains. It did stop all images from working on bbb.com, ccc.com, etc... but not the text.
Below is my htaccess file after I put in the code. (The format of the code is from the third site that I wrote above.) The first 4 lines of the file were already there.
<Files 403.shtml>
order allow,deny
allow from all
</Files>
RewriteEngine on
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?bbb.com.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?ccc.com.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?ddd.com.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?eee.com.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?fff.com.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?ggg.com.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?hhh.com.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?iii.com.*$ [NC]
RewriteRule .* - [F,L]
As mentioned, this has prevented the loading of any images on the other sites(and in my Cubecart admin as well). My site is working fine and always has been throughout this.
But how can I prevent any and all content going to these bogus domains? Any help would be appreciated.
-K