同一资源的不同 URL 会导致 SEO 问题吗

发布于 2024-10-08 03:55:28 字数 287 浏览 1 评论 0原文

我正在使用类似于 codeIgniter 和 Zend FW 的框架。所以URL结构是一样的。含义 /controller/action/etc.... 但是,在某些情况下,不同的 URL 映射同一控制器。这会导致不同的网址具有(非常相似)的内容和文本。

例如,这两个 url 映射到同一页面。

  • /article/id/646478
  • /book/754/review/

我想知道;这会导致 SEO 问题吗?有谁知道谷歌对此类案件有何反应?

I am using a framework similar to codeIgniter and Zend FW. So URL structure is the same. Meaning /controller/action/etc.... However there are some cases when different URLs maps the same controller. This results in different urls having the (very similar) content and text.

For example these two urls map to the same page.

  • /article/id/646478
  • /book/754/review/

I am wondering; will this cause a SEO issue. Does anyone know how Google reacts to such cases?

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

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

发布评论

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

评论(2

丢了幸福的猪 2024-10-15 03:55:28

重复的内容会影响您的 SEO 性能。指定 Google、Microsoft 和 Yahoo 已同意使用的规范链接非常有用,可以帮助减少导致列表稀释的重复内容。 此处是一本不错的读物。

Duplicate content can impact your SEO performance. It's quite useful to specify a canonical link which Google, Microsoft and Yahoo have agreed on the use of to help reduce duplicate content causing dilutions in listings. A good read is here.

傾旎 2024-10-15 03:55:28

正如所提到的,您应该使用基于关键字的 URL,而不是 ID 的 URL。

而不是:
* /文章/id/646478
* /book/754/review/

使用:
* /品牌名称/产品
或者
* /类别/品牌/产品

例如

domain.com/running/nike/cross-trainer-air-max

What was mentioned, and you should use keyword based URLs, not ID ones.

Instead of:
* /article/id/646478
* /book/754/review/

Use:
* /brand-name/product
or
* /category/brand-name/product

e.g.

domain.com/running/nike/cross-trainer-air-max

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