Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 zencart,我想在不同的子域之间共享会话。例如:
www.persun.com fr.persun.com de.persun.com au.persun.com
他们使用相同的站点文件。如何在他们之间共享相同的会话
按优先顺序执行此操作
在 php.ini 中:
session.cookie_domain = ".persun.com"
或在 .htaccess 中:
php_value session.cookie_domain .persun.com
或在脚本文件中:
ini_set('session.cookie_domain', '.persun.com' );