当 URL 前面没有 WWW 时,PHP 会话 cookie 似乎消失了
我把它放在我的索引文件中:
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
根据文档,使用:
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.