私有模式-元数据

发布于 2024-11-16 10:36:28 字数 254 浏览 3 评论 0原文

我需要像 Posterous 那样创建一个具有“私人帖子模式”的小型网站: http ://blog.posterous.com/new-private-posts-on-posterous

我是否需要指定一些特殊的元数据来防止页面被 Google 等搜索引擎索引?

我想尽可能保持私密性。

I need to create a small website with a "private posts mode" like Posterous did: http://blog.posterous.com/new-private-posts-on-posterous

Do I need to specify some special meta data that prevents the pages from indexing by search engines like Google?

I want to keep it as private as possible.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

陪你到最终 2024-11-23 10:36:28

基本上,您正在创建类似 youtube 中不公开功能的内容 视频仅对有直接链接的人可见?

在这种情况下,您可能需要在页面上添加 robots 元标记,并将其设置为 NOINDEX,FOLLOW。

它被放置在页面的 部分内,看起来像这样以防止索引,但允许跟踪页面上的链接。

<meta name="robots" content="NOINDEX,FOLLOW">

有关这方面的更多信息,请访问:

http://www.robotstxt.org/meta.html

为了使其 100% 私密,您需要实施一个登录系统,以便只有被允许的人(例如,Facebook 风格的墙贴)或拥有密钥(受保护的 zip 档案风格)的人才能看到内容。

So basically you're creating something like the unlisted function in youtube where a video is only available to the people that got a direct link to it?

In that case you might want to add a robots meta tag on your page, setting it to NOINDEX,FOLLOW.

It is placed inside the <head> portion of your page and can look something like this to prevent indexing but allow following of links on the page.

<meta name="robots" content="NOINDEX,FOLLOW">

More information on this can be found here:

http://www.robotstxt.org/meta.html

To make it 100% private however you will need to implement a login system so that only people who were allowed (say, facebook style wall posts) or have the key (protected zip archives style) can see the content.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文