Skip to main content

How can i find a websites IP & Block his IP

Comments

3 comments

  • 24x7ss
    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
  • sarhosting
    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
  • cPanelMichael
    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.