增加登录跳转到指定页面;发布新版本

This commit is contained in:
2023-10-04 09:27:45 +08:00
parent daae12610e
commit 8abfdd5016
7 changed files with 30 additions and 17 deletions

View File

@@ -1,19 +1,20 @@
<?php
// +----------------------------------------------------------------------
// | 会话设置
// +----------------------------------------------------------------------
return [
// session name
'name' => 'PHPSESSID',
'name' => 'PHPSESSID',
// SESSION_ID的提交变量,解决flash上传跨域
'var_session_id' => '',
// 驱动方式 支持file cache
'type' => 'file',
'type' => 'file',
// 存储连接标识 当type使用cache的时候有效
'store' => null,
'store' => null,
// 过期时间
'expire' => 86400,
'expire' => 86400 * 30,
// 前缀
'prefix' => '',
'prefix' => '',
];