我在 Yii 框架上运行的项目上激活了 csrf 保护。当基本域像“www.example.com”一样运行时,正在创建 Csrf 令牌。但是当子域像“admin.example.com”一样运行时,它不会被创建。
配置:
'components'=>array(
'request' => array(
'class' => 'application.components.HttpRequest',
'enableCsrfValidation' => true,
),
...
我的代码有什么问题还是与服务器有关?