在配置文件 config.php 中设置如下:
// +----------------------------------------------------------------------
// | 会话设置
// +----------------------------------------------------------------------
'session' => [
'id' => '',
// SESSION_ID的提交变量,解决flash上传跨域
'var_session_id' => '',
// SESSION 前缀
'prefix' => 'think',
// 驱动方式 支持redis memcache memcached
'type' => '',
// 是否自动开启 SESSION
'auto_start' => false,
//启用安全传输
'secure' => true,
// httponly设置
'httponly' => true,
],
// +----------------------------------------------------------------------
// | Cookie设置
// +-----------------------------------------------------------------