How can i find a websites IP & Block his IP
I am having a problem lately. Maybe someone can give me some advice.
I run my own little forum. Recently i typed the name of my forum and on the 10th page or so i found a copy of my forum on another domain.
They must be using some sort of special scipt to duplicate my forum. If i make changes on my forum it automatically changes it on theirs. But you can't log into the forum from their domain.
They put a bunch of ads on their forum. They must be doing it to get clicks on the ads.
Should i ignore it? Or should i block their websites IP address so their server can't scan my domain. I think i would be using my bandwidith and slow down my server?
I tried to block their ip address using .htaccess but it doesn't seem to be working.
Here is an example.
mycoolcarforum.com
and they are using a subdomain.
mycoolcarforum.theirdomain.biz
-
Hi :), If you have root access to your web server, then block their site's IP from the firewall directly. You can find their site's IP using command prompt on your machine as below: > ping mycoolcarforum.theirdomain.biz Other way round, you have to find out their host or registrar and file a Copyright complaint against them to shut down their website. 0 -
It is possible that they are using your A records so basically, that site becomes an alias of you site. All it takes is a typo when updating the records or they did it on purpose. To prevent Google from indexing them, use the canonical links on our forum. As a last resort, put this in your .htaccess file. (BE SURE TO BACK IT UP FIRST!) # If the hostname is NOT www.mycoolcarforum.com # 301 redirect to the same resource on www.mycoolcarforum.com # # If the hostname IS www.mycoolcarforum.com # Show the resource on www.mycoolcarforum.com # RewriteEngine On RewriteCond %{HTTP_HOST} !^www\.mycoolcarforum\.com$ RewriteRule (.*) http://www.mycoolcarforum.com/$1 [L,R=301]
Blocking the IP address may help but if they have access to more IP's they will go ahead and change it on you. You may want to add tracking to your forum's template so you can tell if other sites are doing it or use CopyScape.0 -
Hello :) Yes, the suggestions in the previous replies should help. You can also try blocking the IP address of the website instead of the domain name if you prefer to use the .htaccess file to deny access. Thank you. 0
Please sign in to leave a comment.
Comments
3 comments