HTTP 301 重定向中方案相关 URI 的支持范围有多广

发布于 2024-10-06 18:48:54 字数 360 浏览 6 评论 0原文

我希望将对 www 子域或备用顶级域的请求重定向到一个规范 URL。

为了避免 HTTP/HTTPS 问题,我认为最简单的方法是在 Location 标头中发送一个相对于方案的 URI,如下所示:

HTTP/1.1 301 Moved Permanently
Location: //example.com/

这似乎在浏览器中工作正常,但是 http://no-www.org/ 无法正确处理它。这只是一个写得不好的脚本,还是这种行为实际上在脚本、爬虫等中更常见?

I want to have requests for the www subdomain or for alternate top-level domains redirected to one canonical URL.

To avoid HTTP/HTTPS issues, I figured the easiest way would be to just send a scheme-relative URI in the Location header, like so:

HTTP/1.1 301 Moved Permanently
Location: //example.com/

This seems to work fine in browsers, but the toy »validator« at http://no-www.org/ does not handle it correctly. Is this just a single badly written script, or is this behavior actually more common in scripts, crawlers, etc. out there?

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

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

发布评论

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

评论(1

深海少女心 2024-10-13 18:48:54

位置需要绝对值网址:

[...] 字段值由单个绝对 URI 组成。

位置 = "位置" ":" 绝对URI

尽管大多数用户代理也接受相对 URI,但您应该遵守规范并提供绝对 URI。

Location expects an absolute URI:

[…] The field value consists of a single absolute URI.

Location       = "Location" ":" absoluteURI

Although most user agents will also accept relative URIs, you should stick to the specification and provide an absolute URI.

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