Tons of backlinks from 1 domain

Discussion in 'Link Development' started by deano6410, Jul 23, 2005.

  1. #1
    I am keen to know what you think the weight of lets say 2000 backlinks from one domain would be?

    e.g lets say it was a forum, and the forums index page was a PR5, lets presume that all the forum threads are PR0

    Now, if i managed to add my sites text link to 2000 of the Pr0 forum threads, do you think this would make more difference than just 1 text link on the pr5 page?
     
    deano6410, Jul 23, 2005 IP
  2. raven2424

    raven2424 Well-Known Member

    Messages:
    754
    Likes Received:
    10
    Best Answers:
    0
    Trophy Points:
    160
    #2
    im not 100% sure but i think it does make a differnce and can help your site more.
     
    raven2424, Jul 23, 2005 IP
  3. T0PS3O

    T0PS3O Feel Good PLC

    Messages:
    13,219
    Likes Received:
    777
    Best Answers:
    0
    Trophy Points:
    0
    #3
    Multiple votes from one host doesn't make sense from a democratic perspective. Unless you have anchor text variation I highly doubt anything after the first dozen will help.
     
    T0PS3O, Jul 23, 2005 IP
  4. norfstar

    norfstar Peon

    Messages:
    1,154
    Likes Received:
    62
    Best Answers:
    0
    Trophy Points:
    0
    #4
    It's worth more than one link, but nowhere near 2000 times the value.

    Like TOPS30 said, varying the anchor text from page to page might help you get maximum benefit.
     
    norfstar, Jul 23, 2005 IP
  5. deano6410

    deano6410 Guest

    Messages:
    337
    Likes Received:
    18
    Best Answers:
    0
    Trophy Points:
    0
    #5
    thanks for te replies.

    I wonder if there is a script that can vary the anchor text automatically?

    I have a forum with over 2000 pages, and i have just launched an E-zine and currently have the text link in my footer, but of course it is not possible to change that text (unless i do it every day)

    Anyone know if a script to randomize it would be possible?

    I have seen random aff banner rotators, so surely there is a text version.
     
    deano6410, Jul 23, 2005 IP
  6. norfstar

    norfstar Peon

    Messages:
    1,154
    Likes Received:
    62
    Best Answers:
    0
    Trophy Points:
    0
    #6
    <?php
    
    $random_number = rand(1,5);
    
    switch ($random_number) {
    
       case "1":
          echo '<a href="http://www.domain.ext/">Anchor Text One</a>';
       break;
       case "2":
          echo '<a href="http://www.domain.ext/">Anchor Text Two</a>';
       break;
       case "3":
          echo '<a href="http://www.domain.ext/">Anchor Text Three</a>';
       break;
       case "4":
          echo '<a href="http://www.domain.ext/">Anchor Text Four</a>';
       break;
       case "5":
          echo '<a href="http://www.domain.ext/">Anchor Text Five</a>';
       break;
    
    }
    
    ?>
    Code (markup):
    That's what such a script might look like in PHP. It's untested, but unless I've made a typo it should work.
     
    norfstar, Jul 23, 2005 IP
  7. deano6410

    deano6410 Guest

    Messages:
    337
    Likes Received:
    18
    Best Answers:
    0
    Trophy Points:
    0
    #7
    nice one, i will give it a go.

    can anyone confirm if the different anchor text will make a difference?
     
    deano6410, Jul 23, 2005 IP
  8. someonewhois

    someonewhois Peon

    Messages:
    177
    Likes Received:
    14
    Best Answers:
    0
    Trophy Points:
    0
    #8
    Yeah, and you shouldn't ever quote numbers, but other than that...

    Quicker/more dynamic method:
    <?php
    
    $links = array(	'http://example.com' => 'Anchor Text One',
    		'http://example.com' => 'Anchor Text Two',
    		'http://example.com' => 'Anchor Text Three',
    		'http://example.com' => 'Anchor Text Four',
    		'http://example.com' => 'Anchor Text Five'
    		);
    $domains = array_keys($links);
    $k = rand(0, count($links));
    echo '<a href="'.$domains[$k].'">'.$links[$k].'</a>';
    PHP:
    Edit: Ah, sorry, haha, wasn't thinking straight.
     
    someonewhois, Jul 23, 2005 IP
  9. Dominic

    Dominic Well-Known Member

    Messages:
    1,725
    Likes Received:
    121
    Best Answers:
    0
    Trophy Points:
    185
    #9
    It will have a big impact on yahoo serps, but you need to offset that block of same anchor links with a lot of variety from elsewhere
     
    Dominic, Jul 23, 2005 IP
  10. Tuning

    Tuning Well-Known Member

    Messages:
    1,005
    Likes Received:
    51
    Best Answers:
    0
    Trophy Points:
    138
    #10
    Does that implies sitewide linking has very little impact on google serps ? :rolleyes:

    Thanks
     
    Tuning, Jul 23, 2005 IP
  11. Dominic

    Dominic Well-Known Member

    Messages:
    1,725
    Likes Received:
    121
    Best Answers:
    0
    Trophy Points:
    185
    #11
    From what I've seen, yes.

    On yahoo you can out-link your compeditors, and links from the same site seem to be given credit in that race (given you have a good mix from elsewhere also).
     
    Dominic, Jul 24, 2005 IP
  12. Comfy_ro

    Comfy_ro Peon

    Messages:
    11
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    0
    #12
    yeah it does a difference. Google loves the quality not the quantity
     
    Comfy_ro, Sep 18, 2011 IP
  13. DIGITALCHAMELEON

    DIGITALCHAMELEON Peon

    Messages:
    465
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    0
    #13
    It is not healthy, as much as possible acquired backlinks from different domains...
     
    DIGITALCHAMELEON, Sep 18, 2011 IP
  14. sophie1986

    sophie1986 Member

    Messages:
    131
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    28
    #14
    I totally agree!
     
    sophie1986, Sep 19, 2011 IP
  15. EightAce

    EightAce Member

    Messages:
    36
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    41
    #15
    You need to be careful as adding too many links in a short time can get your site penalised.
     
    EightAce, Sep 19, 2011 IP
  16. nightteacher

    nightteacher Member

    Messages:
    76
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    45
    #16
    You need links from different IP C Classes, and also, if you get a lots of links from beginning you could get banned because of spam.
     
    nightteacher, Sep 20, 2011 IP
  17. miksy123

    miksy123 Peon

    Messages:
    721
    Likes Received:
    2
    Best Answers:
    0
    Trophy Points:
    0
    #17
    It's much better to have a link on 2000 different domains!
     
    miksy123, Sep 22, 2011 IP
  18. clive2

    clive2 Peon

    Messages:
    343
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #18
    In my opinion, adding one page to many pages of the same site, is helpful to improve the ranking. If you get backlink from high PR page, it gives more link juice which helps to improve ranking as well as traffic.
     
    clive2, Sep 23, 2011 IP
  19. LinkGenie

    LinkGenie Active Member

    Messages:
    794
    Likes Received:
    8
    Best Answers:
    0
    Trophy Points:
    60
    #19
    Multiple links from 1 domain is meaningless . You can vary anchor texts. But you cant over use it. Just get one link from one thread and get link for another anchor text from another thread.
     
    LinkGenie, Sep 26, 2011 IP