PHP 中跨 HTTP 和 HTTPS 的 Cookie

发布于 2024-08-22 06:25:49 字数 81 浏览 4 评论 0原文

如何在 PHP 中设置一个在 HTTP 和 HTTPS 中都可读的 cookie?

如果这不可能,可以做什么?设置两个cookie?

How can I set a cookie in PHP that is readable both in HTTP and HTTPS?

If this isn't possible, what can be done? Set two cookies?

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

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

发布评论

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

评论(2

盛夏尉蓝 2024-08-29 06:25:49

默认情况下,同一 URL 上的 http 和 https 都可以读取 cookie。

但是,服务器可以选择在设置 cookie 时指定“安全”标志,这告诉浏览器仅通过安全通道(例如 SSL 连接)发送它。

在这种情况下,cookie 将仅通过 https 发送。未标记为安全的 cookie 将通过 http 和 https 发送。

By default, a cookie can be read by both http and https at the same URL.

However, a server can optionally specify the 'secure' flag while setting a cookie this tells the browser to only send it over a secure channel, such as an SSL connection.

In this case the cookie will only be sent over https. A cookie not marked as secure will be sent over both http and https.

怪我闹别瞎闹 2024-08-29 06:25:49

假设您的域名除了资源类型之外保持不变,则可以从 HTTP 和 HTTPS 读取 PHP(或任何语言)中的 cookie。

例如:

http://www.example.com
https://www.example.com

在此示例中,cookie 可以相互读取。

Assuming your domain name remains the same except for the resource type, cookies in PHP (or any language) can be read from both HTTP and HTTPS.

e.g.:

http://www.example.com
https://www.example.com

In this example, the cookies will be readable from each other.

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