Someone pointed his 2 domains to my server

Discussion in 'Google' started by bryanw, Oct 30, 2007.

  1. #1
    Dear DP fellows,

    I have a dedicated server on Godaddy.
    Someone pointed his 2 domains to my server. So there are 3 sites having the same content.

    Do I have any technical methods to prevent this?

    I added this to my .htaccess file,
    Redirect www.hisdomain.com www.mydomain.com

    But it doesn't work.

    I have another method, I could added his 2 domains into my Google account, then delete the indexed pages from Google. But I don't think this is a good method.

    I posted this in Legal section, but I think this is about SEO, so I posted it here for help.

    Thanks a lot for your help!

    Regards,
    Bryan
     
    bryanw, Oct 30, 2007 IP
  2. Lordy

    Lordy Peon

    Messages:
    1,643
    Likes Received:
    29
    Best Answers:
    0
    Trophy Points:
    0
    #2
    I think all he did was load your content in iframes?

    i don't think it gets indexed if its in iframes
     
    Lordy, Oct 30, 2007 IP
  3. bryanw

    bryanw Peon

    Messages:
    197
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #3
    Not in frame. (His 2 domains have been indexed by Google)

    He pointed his domains to my server ip.

    So his domains have the same content with mine.
     
    bryanw, Oct 30, 2007 IP
  4. donthate

    donthate Banned

    Messages:
    922
    Likes Received:
    14
    Best Answers:
    0
    Trophy Points:
    0
    #4
    Even if he pointed them to you, each domain has its own directory and he wouldnt be able to access your content for SURE. Each domain = Seperate folders, and plus you have to add the domain name to addon domains before it is even ALLOWED to be hosted with your hosting.
     
    donthate, Oct 30, 2007 IP
  5. bryanw

    bryanw Peon

    Messages:
    197
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #5
    Maybe I have something wrong in my configration of the server.

    I ping mysite.com, then I get the ip.

    Just type in the ip in address bar of browser, it displayed the content of my website.

    Anything wrong here?

    Thanks,
    Bryan
     
    bryanw, Oct 30, 2007 IP
  6. Firegirl

    Firegirl Peon

    Messages:
    1,257
    Likes Received:
    105
    Best Answers:
    0
    Trophy Points:
    0
    #6
    You will probably want to call Godaddy to see if they can assist in getting this sorted out. It could be a DNS issue where the other person just made a typo and his domain is pointing to your IP address (or I guess it could have been done on purpose). If this is the case, any updates or changes you make to your site will be seen immediately on his domain. In any case, you should be able to call Godaddy to see if they can look at your DNS records and help you sort it out. Hope this helps!
     
    Firegirl, Oct 31, 2007 IP
  7. oseymour

    oseymour Well-Known Member

    Messages:
    3,960
    Likes Received:
    92
    Best Answers:
    0
    Trophy Points:
    135
    #7
    I don't think you have anything to worry about, but call godaddy anyway...
     
    oseymour, Oct 31, 2007 IP
  8. bryanw

    bryanw Peon

    Messages:
    197
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #8
    Thank you Firegirl and seo ranter.

    I emailed Godaddy, and they let me to ask the guy not to point his domains to my server...
     
    bryanw, Nov 4, 2007 IP
  9. superrichguy

    superrichguy Well-Known Member

    Messages:
    2,225
    Likes Received:
    78
    Best Answers:
    0
    Trophy Points:
    195
    #9
    well does he have ads? If the ads are yours too, then why bother?? Means more money for you....
    Good luck
     
    superrichguy, Nov 4, 2007 IP
  10. xmcp123

    xmcp123 Peon

    Messages:
    876
    Likes Received:
    49
    Best Answers:
    0
    Trophy Points:
    0
    #10
    This code is not tested or anything, but I've used something like it, and it should work.
    
    <?php 
    error_reporting(E_ERROR);
    $d=strtolower($_SERVER['HTTP_HOST']);
    $myRealDomain=strtolower("www.yourDesiredDomain.com");
    if(isset($_SERVER['QUERY_STRING']))
    {
    $qString="?".$_SERVER['QUERY_STRING'];
    }
    else
    {
    $qString="";
    }
    if($d!=$myRealDomain)
    {
    header("Location: http://".$myRealDomain.$_SERVER['REQUEST_URI'].$qString);
    }
    ?>
    
    Code (markup):
    However, if I were you, I'd track what 404s you're getting(for pages that should be on THEIR site), and 404 and redirect it to a suitable affiliate program for now. Or an article on the topic, with adsense.
     
    xmcp123, Nov 4, 2007 IP
  11. phpl33t

    phpl33t Banned

    Messages:
    456
    Likes Received:
    33
    Best Answers:
    0
    Trophy Points:
    0
    #11
    Who cares? Free traffic homey. Waaaa.
     
    phpl33t, Nov 4, 2007 IP
  12. xmcp123

    xmcp123 Peon

    Messages:
    876
    Likes Received:
    49
    Best Answers:
    0
    Trophy Points:
    0
    #12
    It is beautiful.
    Back in the day, I had the video server from Kevin Rose(the guy who started Digg, and was on TechTV)'s series thebroken pointed to one of my servers. Damn did that thing ever mess with my logging scripts. Took forever to convince google that no, I was not in fact a techie video site.
     
    xmcp123, Nov 4, 2007 IP
  13. billysafruit

    billysafruit Peon

    Messages:
    15
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #13
    Why would you care their is no one out their that can even make the minimum 100 dollars a month anyway out their it only helped anyway so no harm is dunn.
     
    billysafruit, Nov 4, 2007 IP
  14. brandonlee

    brandonlee Member

    Messages:
    65
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    43
    #14
    Hi,
    i have a same problem.
    If you have adsense ads on your site block the 2 domains and make only your domain available to count the clicks and impresions.
     
    brandonlee, Nov 4, 2007 IP
  15. bryanw

    bryanw Peon

    Messages:
    197
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #15
    Thank you all guys for your kind help.

    These are 10-20 searches of my domain(or mydomain.com) daily, his domains are in second and third positions of the search results. I'm afraid after getting more indexed pages in Google, He may park his domains.

    His domain displays my adsense ads at present.

    Just let it there and keep an eye.

    Thanks again,
    Bryan
     
    bryanw, Nov 4, 2007 IP