跨子域的会话不起作用
我想使用 cookies &跨子域的会话。我严格使用 yii 架构。所以我在 cofig.php 中这样做了,
'session' => array(
'cookieMode' => 'allow',
'cookieParams' => array(
'path' => '/',
//'domain' => '.mydomain.co',
'httpOnly' => true,
),
),
我得到了跨子域的 cookie,但没有跨会话。
I want to use cookies & sessions across sub domains. Im strictly using yii architecture. So I did this in cofig.php
'session' => array(
'cookieMode' => 'allow',
'cookieParams' => array(
'path' => '/',
//'domain' => '.mydomain.co',
'httpOnly' => true,
),
),
I'm getting the cookies across sub domains but not sessions.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要为此设置一些 PHP/Apache 配置。
请在文件顶部添加以下代码。
将domain.com 替换为您的域名。
you need to set some PHP/Apache configuration for that.
please add below code at top of file.
replace domain.com with your domain.