

application/config.php 搜索 缓存设置 把下面默认的替换为
'cache' => [ // 驱动方式 'type' => 'redis', // redis File // 缓存保存目录 'path' => CACHE_PATH, // 缓存前缀 每个网站都要不一样 'prefix' => 'x1', // 缓存有效期 0表示永久缓存 'expire' => 0, 'host' => '127.0.0.1', 'port' => '6379', 'password'=> "", 'timeout' => 86400, ],