Home > Backend Development > PHP Tutorial > 不同域的两个网站,如何保持SESSION回话同步?

不同域的两个网站,如何保持SESSION回话同步?

WBOY
Release: 2016-06-06 20:10:21
Original
1195 people have browsed it

比如:

<code>
 域名一: baidu.com/mobile
 域名二: test.baidu.com/mobile
 问题:有哪些方案可以实现两个域SESSION回话同步,越详细越好,谢谢</code>
Copy after login
Copy after login

回复内容:

比如:

<code>
 域名一: baidu.com/mobile
 域名二: test.baidu.com/mobile
 问题:有哪些方案可以实现两个域SESSION回话同步,越详细越好,谢谢</code>
Copy after login
Copy after login

使用相同的Session存储方式和存储域即可,比如文件Session则存放于相同的目录下,数据库Session则存放在相同的数据库和数据表下。这样就能使两个网站Session互通了。

session在服务器端的保存方式有三种,一种是文件形式,也是默认形式,一种是内存形式,另一种是数据库形式。那么, 我们只要能将session保存在两个服务器都能找到的地方,这个问题就解决了。你可以把session存在redis中

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template