私有模式-元数据
我需要像 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
基本上,您正在创建类似 youtube 中不公开功能的内容 视频仅对有直接链接的人可见?
在这种情况下,您可能需要在页面上添加 robots 元标记,并将其设置为 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.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.