Forum Moderators: open

Message Too Old, No Replies

Pr as it pertains to robots.txt

a Google Pr passing question

         

mikemcs

11:19 am on Jul 26, 2004 (gmt 0)

10+ Year Member



Does a disallow stop PR from going to a page. I have a few fluff pages that I want to stop PR from going to (Directions, Login, ...) is robots.txt the best way to do this?

doc_z

11:50 am on Jul 26, 2004 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member Top Contributors Of The Month



Does a disallow stop PR from going to a page.

No.

Patrick Taylor

12:05 pm on Jul 26, 2004 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



I wondered something similar. All my outgoing links pass through a php redirect script (visit.php) - the links are like mydomain.com/visit.php?sitelinkedto - and attempting to open visit.php throws up a 404 error as it's just a script. I have a suspicion I'm passing PR to a black hole. Would I be better making the script into a page that actually opens and displays a link back to my homepage?

mikemcs

12:21 pm on Jul 26, 2004 (gmt 0)

10+ Year Member



What is the best way to stop the PR from going to these pages?

Patrick Taylor

12:32 pm on Jul 26, 2004 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



If you put this in an external js file:

document.open()
document.write('<a href="url">Linktext</a>.');

then name it "link.js" and use this as the link:

<script src="link.js" type="text/javascript"></script>

I believe this is effective but relies on having visitors who don't have js disabled.