vote up 0 vote down star

I Produced a page which I have no intention to let Search Engines find and claw it. The advisable solution is robot.txt. But it is not applicable in my situation.

So I isolated this page from my site by clearing all links from other pages to this page, and never put its URL in external sites.

Logically, then, it is impossible for search engines to find out this page. And that means no matter how many out-bound links nesting in this page, the PR of site is save. Am I right?

Thank you very much!

Hope this question is programming related!

flag

17% accept rate
How can robots.txt not be applicable? – RichardOD Oct 20 at 7:18
Note: it's robots.txt , not robot.txt – Piskvor Oct 20 at 7:21
Thanks, Piskvor. My mistake! Richard OD!Thank you for your response. The Reason is complicated. One of them is that I need allow some obscure search engines craw to that page(I gave them the URL of the page), so as to indicates their links are exist in my site. – skyflyer Oct 20 at 7:36

4 Answers

vote up 0 vote down

why do you think that when you have outbound links PR is gone?

link|flag
vote up 1 vote down

No, there's still a chance your page can be found by search engine crawlers. For example, it's been speculated that data from the Google Toolbar can be used to alert Googlebot to the presence of a page. And there's still a chance others might link to your page from external sites if the URL becomes known.

Your best bet is to add a robots meta tag to your page, this will prevent it from being indexed, and prevent crawlers from following any links:

<meta name="robots" content="noindex,nofollow" />
link|flag
Also, 'Safe Browsing' checks may reveal the URL. – brianegge Oct 20 at 7:31
vote up 0 vote down

If you have outbound links on this "isolated" page then your page will probably show up as a referrer in the logs of the linked-to page. Depending on how much the owners of the linked-to page track their stats, then they may find your page.

I've seen httpd log files turn up in Google searches. This in turn may lead others to find your page, including crawlers and other robots.

The easiest solution might be to password protect the page?

link|flag
IE used to send the referrer header when you would type a new URL into the browser. I think this is fixed now, but it used to give out many 'internal' URLs. – brianegge Oct 20 at 7:35
Password Protection seems enlightening to me, Thanks! – skyflyer Oct 20 at 7:38
vote up 0 vote down

If it is on the internet and not restricted, it will be found. It may make it harder to find, but it is still possible a crawler may happen across it.

What is the link so I can check? ;)

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.