如果客户端禁用 cookie,会话还能工作吗?
可能的重复:
没有 cookie 的 PHP 会话
如果客户端禁用了 cookie,会话是否可以在 PHP 中工作,如果可以,如何工作它会起作用吗?如果没有,还有什么其他方法来维护用户的状态?
Possible Duplicate:
PHP session without cookies
If client has disabled the cookies, will session work in PHP and if yes how it will work? If not, what are the other methods to maintain the state of the user?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
会话将与附加了 sessionID 的 url 一起使用。这是维护会话的替代方法,称为 url 重写。
Session will work with url getting appended with sessionID. This is alternate to maintaining session and is called url rewriting.