这是因为laravel的缓存路径没有找到
laravel缓存文件路径是在 config/cache.php中设置,默认存在storage文件夹中
'file' => [
'driver' => 'file',
'path' => storage_path('framework/cache/data'),
],
解决
需要保证storage/framework下面创建 sessions, views, cache 文件夹并确保可写权限
这是因为laravel的缓存路径没有找到
laravel缓存文件路径是在 config/cache.php中设置,默认存在storage文件夹中
'file' => [
'driver' => 'file',
'path' => storage_path('framework/cache/data'),
],
解决
需要保证storage/framework下面创建 sessions, views, cache 文件夹并确保可写权限
转载于:https://www.cnblogs.com/houss/p/11304559.html