浏览器如何将cookie与将cookie发送到的服务器相关联?
如果禁用了cookie,可以使用其他方法在客户端浏览器上存储会话cookie吗?
答案 0 :(得分:0)
浏览器如何将cookie与将cookie发送到的服务器相关联?
他们normalise the domain name,然后是check which cookies match the domain,然后是check that the path in the cookie is the same as the start of the path for the request。
如果禁用了cookie,还可以使用其他方法在客户端浏览器上存储session_cookies?
没有另一种方式。如果禁用cookie,则禁用cookie。
您可以使用其他非Cookie方式临时存储数据。过去常见的方法是将数据存储在查询字符串中。这可能会导致安全问题,因为它可能通过引用者和人们复制/粘贴链接泄漏。
通常,如果您需要跟踪用户,请解释原因并要求他们启用Cookie。