内容重复和搜索引擎

发布于 2024-10-17 07:14:29 字数 96 浏览 1 评论 0 原文

我正在开发一个应用程序,允许人们将内容发布到我的网站,然后推送到他们的博客。我不想因为重复内容而受到 Google 或其他搜索引擎的攻击,那么我该怎么做才能避免受到惩罚呢?谢谢。

I am developing an app that allows people to publish content to my site and then pushed to their blog. I don't want to get hit by Google or the other search engines for duplicate content, so what can I do to avoid being penalized? Thanks.

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

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

发布评论

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

评论(1

↘紸啶 2024-10-24 07:14:29

您需要确定哪个网站(您的或他们的)应被视为规范内容来源。根据您的决定/答案,以下内容将适用:

您的网站规范:
- 使用 rel="canonical" 链接元素引用 URL。
- 延迟 24 小时推送到他们的博客
- 使用时间戳更新 XML 站点地图中的 URL
- 将文章中任何链接的所有 HREF 值设置为绝对值(使用您的域)

他们的网站规范:
- 在您的头脑中使用 rel=canonical 元素引用他们的网站
- 立即推送到他们的博客
- 不要在 XML 站点地图中包含任何对该文章的引用
- 考虑在元数据中使用“noindex, follow”
- 将文章中任何链接的所有 HREF 值设置为相对值

然后这取决于您可以在他们的网站上施加什么控制 - 但最终取决于他们。

You need to figure out which site (yours or theirs) that should be treated as the canonical source of the content. Depending on your decision/answer, the following would apply:

Your site canonical:
- reference the URL with the rel="canonical" link element.
- delay the push to their blog by 24 hours
- update the URL in your XML sitemap with a time-stamp
- make all of the HREF values of any links in the article as absolute (with your domain)

Their site canonical:
- reference their site with a rel=canonical element in your head
- push instantly to their blog
- don't include any reference the article in your XML sitemap
- consider using "noindex, follow" in your meta
- make all of the HREF values of any links in the article as relative

Then it comes down to what control you can exert on their site - but ultimately it's up to them.

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