How do I best put links on my site without leaking PR? iframe, javascript, php, nofol

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Kard63
    Confirmed User
    • Nov 2003
    • 8944

    #1

    How do I best put links on my site without leaking PR? iframe, javascript, php, nofol

    Before I start I should say I only care about google. If you disagree with any of the ideas I express here please tell me. These are not my ideas, just shit I read.

    rel nofollow - I heard that stops me from adding pr to the site I am linking to but no one as said it stops my site from leaking pr. This would be the easiest option if it in fact does stop the bleeding.

    javascript - I read google does not index javascript at all and you have no way to get caught but 2% of your traffic is wasted.

    php - google is somewhat unlikely to catch you but they can if they see a patter after indexing you multiple times and if they catch you then you might as well toss the domain. If that is the case this is not an option for me.

    iframe - I was just told they don't get indexed. I haven't really looked this up yet. Is it a good idea?



    Thanks in advance to anyone who posts on topic.
  • fluffygrrl
    So Fucking Banned
    • May 2006
    • 2187

    #2
    nofollow is the way to go if google respects their own specs (which most likely they don't)

    javascript is the way to go if you wish to be sure - they certainly don't have the hardware to follow java redirects.

    im not sure what you mean about php redirects, seeing how php is a server side language. it still has to output html.

    iframes are dumb.

    Comment

    • Rorschach
      So Fucking Banned
      • Aug 2002
      • 5579

      #3
      I would use iframes. I have seen Google parse javascript occasionally.

      Your best bet is to cloak via IP.

      Comment

      • BV
        wtf
        • Sep 2001
        • 10914

        #4
        would having a bunch of links to php redirect scripts on your domain leak PR? if not then that would be simple.

        Comment

        • Kard63
          Confirmed User
          • Nov 2003
          • 8944

          #5
          3am bump for more theories

          Comment

          • Rorschach
            So Fucking Banned
            • Aug 2002
            • 5579

            #6
            PR is generally passed through a 301 redirect

            Comment

            • SmokeyTheBear
              ►SouthOfHeaven
              • Jun 2004
              • 28609

              #7
              the safest method i would think is php

              save this as link.php
              Code:
              <?php
              $guy = $_SERVER["HTTP_REFERER"];
              if ($guy == ""){
              // bot/google hit
              $lnk = "<a href=http://linkforbots.com>LINK</a>";
              } else {
              // real hit
              $lnk = "<a href=http://linkforpeople.com>LINK</a>";
              }
              echo $lnk;
              ?>
              use this on your pages to pull the link into your page

              <? @readfile("http://www.yoursite.com/link.php") ?>
              hatisblack at yahoo.com

              Comment

              • TheDoc
                Too lazy to set a custom title
                • Jul 2001
                • 13827

                #8
                Use a 302 redirect script on your links out and exclude the file in your robots.txt

                No juice will be passed.
                ~TheDoc - ICQ7765825
                It's all disambiguation

                Comment

                • polle54
                  Confirmed User
                  • Jul 2004
                  • 4626

                  #9
                  Nofollow should work just fine. otherwise I back up Smokeys solution
                  ICQ# 143561781

                  Comment

                  • Kard63
                    Confirmed User
                    • Nov 2003
                    • 8944

                    #10
                    more opinions please.

                    no follow is the easiest so the ones of you not saying that are not sure if you leak pr through it, right?

                    Comment

                    • TheDoc
                      Too lazy to set a custom title
                      • Jul 2001
                      • 13827

                      #11
                      Originally posted by Kard63
                      more opinions please.

                      no follow is the easiest so the ones of you not saying that are not sure if you leak pr through it, right?
                      It's not about pagerank with no follow, actually pagerank is nothing anymore and you don't need a ranking at all to kill in the se's, but you will get one either way.

                      The no follow stops all value, not just passing a bit of pr, but also the quality of the anchor text and text used, a backlink value, the age/value of the link, all that is ignored.

                      If you want to be 100% sure that you don't pass any value, you need to use a 302 redirect and exclude the file from being listed. Or do it like smokey said, which is about the same thing but you don't need to exclude anything.
                      ~TheDoc - ICQ7765825
                      It's all disambiguation

                      Comment

                      • StarkReality
                        Confirmed User
                        • May 2004
                        • 4444

                        #12
                        Nofollow leaks no PR, that's for sure. Always using it and I have never seen any problems with it so far, since google invented it they stick to it and won't make it obsolete by letting PR leak. The myths about nofollow and leaking are because it's named a bit ambiguous: The bot actually follows nofollow links, but disregards them PR, link juice and penalty wise.

                        Smokey's solution is very nice and elegant, but not 100&#37; foolproof and secure. If a bot slips through, you may be fucked for cloaking. I generally don't like cloaking much, even the most expensive IP based solutions aren't perfect.

                        Comment

                        • tranza
                          ICQ: 197-556-237
                          • Jun 2003
                          • 57559

                          #13
                          WTF is a PR leak??
                          I'm just a newbie.

                          Comment

                          • Slappin Fish
                            Confirmed User
                            • Jul 2007
                            • 2512

                            #14
                            Google is parsing javascript these days.

                            If it is just for PR, and not hidding links, nofollow works.

                            Comment

                            • The Judge
                              Confirmed User
                              • Jan 2006
                              • 1647

                              #15
                              I believe it is a urological condition common among transsexuals.

                              Originally posted by tranza
                              WTF is a PR leak??

                              Comment

                              • The Judge
                                Confirmed User
                                • Jan 2006
                                • 1647

                                #16
                                Originally posted by Slappin Fish
                                Google is parsing javascript these days.

                                If it is just for PR, and not hidding links, nofollow works.

                                Comment

                                • TheDoc
                                  Too lazy to set a custom title
                                  • Jul 2001
                                  • 13827

                                  #17
                                  Originally posted by StarkReality
                                  Smokey's solution is very nice and elegant, but not 100% foolproof and secure. If a bot slips through, you may be fucked for cloaking. I generally don't like cloaking much, even the most expensive IP based solutions aren't perfect.
                                  Actually, Google guidelines tells you to block scripts, pages, for affiliate links, ect. It's not cloaking what so ever.
                                  ~TheDoc - ICQ7765825
                                  It's all disambiguation

                                  Comment

                                  • StarkReality
                                    Confirmed User
                                    • May 2004
                                    • 4444

                                    #18
                                    Originally posted by TheDoc
                                    Actually, Google guidelines tells you to block scripts, pages, for affiliate links, ect. It's not cloaking what so ever.
                                    Blocking isn't, but showing visitors and bots something different is, I was referring to the code Smokey posted.

                                    Comment

                                    • TheDoc
                                      Too lazy to set a custom title
                                      • Jul 2001
                                      • 13827

                                      #19
                                      Originally posted by StarkReality
                                      Blocking isn't, but showing visitors and bots something different is, I was referring to the code Smokey posted.
                                      true enough.. you shouldn't display different links for surfers and bot. It's okay in some situations, but overall just not a good idea.
                                      ~TheDoc - ICQ7765825
                                      It's all disambiguation

                                      Comment

                                      • Kard63
                                        Confirmed User
                                        • Nov 2003
                                        • 8944

                                        #20
                                        The main goal of this is not to attempt to deny any boost to the site I'm linking to. I don't care what happens to that site at all. Good, bad, or neutral I don't care. But I don't want my site to lose anything by linking to them.

                                        Comment

                                        • The Judge
                                          Confirmed User
                                          • Jan 2006
                                          • 1647

                                          #21
                                          It all depends who you link to, if it's CNN for example, you wont lose anything, if some shady link farm, you WILL lose
                                          [
                                          QUOTE=Kard63;14031776]The main goal of this is not to attempt to deny any boost to the site I'm linking to. I don't care what happens to that site at all. Good, bad, or neutral I don't care. But I don't want my site to lose anything by linking to them.[/QUOTE]

                                          Comment

                                          • Kard63
                                            Confirmed User
                                            • Nov 2003
                                            • 8944

                                            #22
                                            Originally posted by TheDoc
                                            The no follow stops all value, not just passing a bit of pr, but also the quality of the anchor text and text used, a backlink value, the age/value of the link, all that is ignored.
                                            I don't want to lose the anchor text. Fuck. Whats the difference between your suggestion and smokey's suggestion and would either let my anchor text still be considered?

                                            Comment

                                            • Angry Jew Cat - Banned for Life
                                              (felis madjewicus)
                                              • Jul 2006
                                              • 20368

                                              #23
                                              Does linking to galleries on a blog leak PR? They are outbound links and all? I don&#232;t want to screw people on link exchanges who i am working with build PR, but if I am leaking on gallery links I want to know how I can combat this. Is a nofollow enough for this purpose?

                                              Comment

                                              • Kard63
                                                Confirmed User
                                                • Nov 2003
                                                • 8944

                                                #24
                                                Originally posted by ismokeblunts
                                                Does linking to galleries on a blog leak PR? They are outbound links and all? I donèt want to screw people on link exchanges who i am working with build PR, but if I am leaking on gallery links I want to know how I can combat this. Is a nofollow enough for this purpose?
                                                That is exactly what this thread is about. Yes, it leaks PR. The general consensus that I'm getting is that rel=nofollow would stop the leak but the text anchor would also be completely ignored as well. Thats not good.

                                                Other possibilities include using javascript but then 2% of your traffic is worthless because they don't have it enabled and some seem to think javascript isn't 100% effective anyway. Everyone seems to think the iframe idea is very gay. The PHP plan seems to be the front runner but I don't quite understand it.

                                                Comment

                                                • TheDoc
                                                  Too lazy to set a custom title
                                                  • Jul 2001
                                                  • 13827

                                                  #25
                                                  Originally posted by Kard63
                                                  I don't want to lose the anchor text. Fuck. Whats the difference between your suggestion and smokey's suggestion and would either let my anchor text still be considered?
                                                  Using the no follow stops the text value to the linked person, not so much the value of the text on your Website, which doesn't have much value anyway unless it's related.

                                                  Smokey's example looks for the Google bot and changes out links/text based on that fact. So if Google visited your site you could add rel="nofollow" to your links.

                                                  My version, uses a redirect to kill the bot from passing to the other website, which kills any value the link may have. This is how most trade scripts work or redirect links from sponsors.
                                                  ~TheDoc - ICQ7765825
                                                  It's all disambiguation

                                                  Comment

                                                  • Kard63
                                                    Confirmed User
                                                    • Nov 2003
                                                    • 8944

                                                    #26
                                                    Originally posted by TheDoc
                                                    Using the no follow stops the text value to the linked person, not so much the value of the text on your Website, which doesn't have much value anyway unless it's related.

                                                    Smokey's example looks for the Google bot and changes out links/text based on that fact. So if Google visited your site you could add rel="nofollow" to your links.

                                                    My version, uses a redirect to kill the bot from passing to the other website, which kills any value the link may have. This is how most trade scripts work or redirect links from sponsors.
                                                    So a no follow lets to bot go to the other site, it just doesn't give them any kind of consideration for the inbound link. The others prevent the bot from going to the sites at all. and otherwise they are all exactly the same?

                                                    Would any of them piss google off?

                                                    Comment

                                                    • grzepa
                                                      Confirmed User
                                                      • Jul 2004
                                                      • 1263

                                                      #27
                                                      What if i want to nofollow my streamate iframes ? How to do that ?
                                                      Like X-ART !!

                                                      Comment

                                                      • iSpyCams
                                                        Amateur Gynecologist
                                                        • May 2009
                                                        • 4436

                                                        #28
                                                        ancient thread bump alert
                                                        - As soon as I think up a good sig it's going here.

                                                        Comment

                                                        • AaronM
                                                          GFY Royality ;)
                                                          • Oct 2001
                                                          • 46923

                                                          #29
                                                          Originally posted by grzepa
                                                          What if i want to nofollow my streamate iframes ? How to do that ?

                                                          By starting a new thread instead of bumping one that's 5.5 years old.

                                                          Comment

                                                          • freecartoonporn
                                                            Confirmed User
                                                            • Jan 2012
                                                            • 7683

                                                            #30
                                                            rel nofollow - I heard that stops me from adding pr to the site I am linking to but no one as said it stops my site from leaking pr. This would be the easiest option if it in fact does stop the bleeding.
                                                            SSD Cloud Server, VPS Server, Simple Cloud Hosting | DigitalOcean

                                                            Comment

                                                            Working...