当 URL 前面没有 WWW 时,PHP 会话 cookie 似乎消失了

发布于 2024-12-06 03:24:54 字数 202 浏览 0 评论 0原文

我把它放在我的索引文件中:

session_set_cookie_params(31536000);
session_start(); 

即使关闭并重新打开浏览器,它也能让用户保持登录状态。

但是,只有当我的 URL 前面有 WWW 时,它才有效。有没有办法让它在 URL 前面没有 WWW 的情况下工作?

I put this on my index file:

session_set_cookie_params(31536000);
session_start(); 

It keeps users logged in even when the browser is closed and re-opened.

However, it only works when a WWW in front of my URL. Is there a way to make it work without the WWW in front of the URL?

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

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

发布评论

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

评论(1

固执像三岁 2024-12-13 03:24:54

根据文档,使用:

session_set_cookie_params( 31536000, '/', '.example.com' );

这将允许会话 cookie 对于每个路径(第二个参数)和 example.com 的每个子域(第三个参数)都有效。当然,请将 .example.com 替换为您自己的。

As per the docs, use this:

session_set_cookie_params( 31536000, '/', '.example.com' );

This will allow the session cookie to be valid for every path (second argument) and every subdomain of example.com (third argument). Replace .example.com with your own of course.

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