使用 SSL 时是否有 Referrer 标头?

发布于 2024-12-07 16:36:22 字数 30 浏览 1 评论 0原文

使用 SSL 时域内是否存在引荐来源网址标头?

Is there referrer header within domain while using SSL?

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

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

发布评论

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

评论(2

抠脚大汉 2024-12-14 16:36:22

如果通过 HTTP 安全 (HTTPS) 连接访问网站并且
链接指向除另一个安全位置之外的任何地方,然后
未发送referrer 字段。

即将推出的 HTML5 标准将支持属性/值 rel =
“noreferrer”以指示用户代理不要发送
推荐人。

来源: http://en.wikipedia.org/wiki/HTTP_referrer

所以看来 referrer 不在域内,而是在 SSL 内。

If a website is accessed from a HTTP Secure (HTTPS) connection and a
link points to anywhere except another secure location, then the
referrer field is not sent.

The upcoming standard HTML5 will support the attribute/value rel =
"noreferrer" in order to instruct the user agent not to send a
referrer.

Source: http://en.wikipedia.org/wiki/HTTP_referrer

So it seems referrer is not within the domain, but within SSL.

只是我以为 2024-12-14 16:36:22

至少 Chrome 现在支持元标记,该标记明确允许在从 HTTPS 转换为 HTTP 时发送 Referrer。只需在标题中包含以下行:

<meta name="referrer" content="origin">

以下是更多信息:
http://wiki.whatwg.org/wiki/Meta_referrer

At least Chrome supports now a Meta Tag which explicitly allows to send the Referrer when going from HTTPS to HTTP. Just include the following line in the header:

<meta name="referrer" content="origin">

Here is more Information:
http://wiki.whatwg.org/wiki/Meta_referrer

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