some one using cname and stealing my website content

  • Thread starter Thread starter Deleted member 17472
  • Start date Start date
D

Deleted member 17472

Guest
some one using cname and stealing my website content, how i will prevent that?

any idea???
 
what kind of stuff they stoles from you ? and as web Echo ​says, contact their domain registrar
 
whole website , their content, title, description, images everything they stole from my website by using cname.

I just found that their registar is a chinese firm. and i do not think it will be easy for me to talk or chat with them.
 
well, what problem is causing you that? You can always submit a file to the authorities if you are in the us (theft of original work)
 
just make a 301 redirect if _SERVER['HTTP_HOST'] != "yourdomain" or you can do it from htaccess too

Code:
[COLOR=#ffffff]<IfModule mod_rewrite.c>  
RewriteEngine On  
RewriteCond %{HTTP_HOST} ^olddomain.com$ [OR]  
RewriteCond %{HTTP_HOST} ^www.olddomain.com$  
RewriteRule (.*)$ http://www.newdomain.com/$1 [R=301,L]
</IfModule>[/COLOR]
 
just make a 301 redirect if _SERVER['HTTP_HOST'] != "yourdomain" or you can do it from htaccess too

Code:
[COLOR=#ffffff]<IfModule mod_rewrite.c>  
RewriteEngine On  
RewriteCond %{HTTP_HOST} ^olddomain.com$ [OR]  
RewriteCond %{HTTP_HOST} ^www.olddomain.com$  
RewriteRule (.*)$ http://www.newdomain.com/$1 [R=301,L]
</IfModule>[/COLOR]

The website who steals my whole website, previously was a torrent site and it is already blacklisted by google. Now that website using my website content, images, name eetc..

So i think it will definitely harm my website in future. I found they using cname to steal all data. This above htaccess is not working and it redirects whole my website to any other website.
 
is any one know how can i prevent this? i already contact their registrar. But i did not receive any response so far. I already contact the owner of that website,. still no answer from him.
 
If your website has good PageRank then maybe he is trying to fake his pagerank, once his domain gets pagerank he will try to sell it.
just a thought.
 
chances are if this is a site copying data and used to be a torrent site, they have taken the appropriate measures to make sure it is hard to take down or get in contact with registrar/hosting . have you tried the advice m4dm4n gave you?
 
chances are if this is a site copying data and used to be a torrent site, they have taken the appropriate measures to make sure it is hard to take down or get in contact with registrar/hosting . have you tried the advice m4dm4n gave you?

I already tested this and that is not working.
 
OP? Can you tell if they are stealing your content through your RSS feed??? Most scrappers go there cause its pretty simple ... if they are you can try this:

If you know the IP from which they are operating, then you can simply block them from your feed by putting this code in your .htaccess file

RewriteEngine on RewriteCond %{REMOTE_ADDR} ^43.101.100.19 RewriteRule ^(.*)$ http://newfeedurl.com/feed


If you need help doing this try out these links [Apache .htaccess Tutorial] and the [URL Rewriting Guide]

Also the IP address in there is made up off the top of my head if its anyones I am sorry in advance :nemoflow:
 
OP? Can you tell if they are stealing your content through your RSS feed??? Most scrappers go there cause its pretty simple ... if they are you can try this:

If you know the IP from which they are operating, then you can simply block them from your feed by putting this code in your .htaccess file

RewriteEngine on RewriteCond %{REMOTE_ADDR} ^43.101.100.19 RewriteRule ^(.*)$ http://newfeedurl.com/feed


If you need help doing this try out these links [Apache .htaccess Tutorial] and the [URL Rewriting Guide]

Also the IP address in there is made up off the top of my head if its anyones I am sorry in advance :nemoflow:

No my website is a simple html website. That website using cname to stole all real time data from my website i.e if i add or remove or change my website layout or design or text, then that website also change instantly.
 
Why don't you just go into your control panel in your hosting and block their IP???
 
Basically they are just going to his site and scraping all his content, code etc... It's simple to do when you are using just basic html. I would block the IP address though its your best bet especially if they are constantly just stealing crap from your site. That won't stop them but it might slow them down (as they can just easily move to another IP address or run through a proxy)
 
Basically they are just going to his site and scraping all his content, code etc... It's simple to do when you are using just basic html. I would block the IP address though its your best bet especially if they are constantly just stealing crap from your site. That won't stop them but it might slow them down (as they can just easily move to another IP address or run through a proxy)

i have blocked some ip in htaccess, now only their home page is working and rest pages are getting 403 forbidden error.
 
1. Be thankful you have content worth scraping over.
2. Google can differentiate between a scraped site and the 'real' site.
 
Back
Top