如何避免重复内容?重定向 301/404?

发布于 2024-10-16 21:06:32 字数 445 浏览 2 评论 0原文

可以说我有这个链接: http://www.domain.com/content/view/1/seo-url

现在,假设用户拼错了链接 - http://www.domain.com/content/view/1/seo-url

现在,我不想让他获得 404 页面,我想将他重定向到具有正确 seo url 的正确页面,但是 - 我不想创建重复的内容(在谷歌方面)。

该怎么办?

header("....");
header("location: righturl");

lets say i have this link:
http://www.domain.com/content/view/1/seo-url

now, lets say a user misspeled the link -
http://www.domain.com/content/view/1/seo-urll

now, i dont want him to get a 404 page, I want to redirect him to the right page with the right seo url, BUT - i dont want to create duplicate content (on google's side).

What to do?

header("....");
header("location: righturl");

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

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

发布评论

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

评论(2

つ可否回来 2024-10-23 21:06:32

您必须使用 301(切勿使用 302!)标头重定向用户。
您不会遇到重复内容的问题,并且可能的 linklove 会转到正确的网址。

You must redirect the user with a 301 (never use 302!) header.
You will not get dublicate content problems, and possible linklove goes to the correct url.

抚笙 2024-10-23 21:06:32

303 查看其他,我想说。或者 < 中的规范网址元/>标签。

实际上我很怀疑,因为 302 有时被称为 302 Found [Elsewhere]

这是行业实践的一个例子
与标准 HTTP/1.0 相矛盾
规范(RFC 1945),其中
要求客户执行
临时重定向(原来的
描述短语是“移动
暂时”),但流行的浏览器
第303章 303
其他,即改变
请求类型为 GET,无论
它本来是什么。
因此,HTTP/1.1添加了状态码
303 和 307 消除歧义
这两种行为。

维基

303 See Other, I'd say. Either that or a canonical URL in a <meta /> tag.

Actually I'm in doubt since 302 is sometimes referred to as 302 Found [Elsewhere]:

It is an example of industry practice
contradicting the standard HTTP/1.0
specification (RFC 1945), which
required the client to perform a
temporary redirect (the original
describing phrase was "Moved
Temporarily"), but popular browsers
implemented it as a 303 See
Other, i.e. changing
the request type to GET regardless of
what it had been originally.
Therefore, HTTP/1.1 added status codes
303 and 307 to disambiguate between
the two behaviours.

(wiki)

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