我有 3 个域:
example.com
m.example.com
dev.example.com
example.com
会话对于和应该是通用的m.example.com
。我是怎么做到的。引导程序.php:
protected function _initSession()
{
Zend_Session::setOptions(array(
'cookie_domain' => '.example.com',
'name' => 'ExampleSession'
));
Zend_Session::start();
}
但本次会议dev.example.com
也适用。我怎样才能避免共同会话dev.example.com
?谢谢!