檢查會話儲存路徑許可權
這裡我假設專案應用程式網址是 APP_URL=http://project.dev/ts/toys-store
- 將可寫許可權設定為
storage_path('framework/sessions')
資料夾。 - 檢查 laravel 專案的路徑
'path' => '/ts/toys-store',
laravel 專案的根目錄。 - 更改你的 cookie
'cookie' => 'toys-store',
的名稱
return [
'driver' => env('SESSION_DRIVER', 'file'),
'lifetime' => 120,
'expire_on_close' => false,
'encrypt' => false,
'files' => storage_path('framework/sessions'),
'connection' => null,
'table' => 'sessions',
'lottery' => [2, 100],
'cookie' => 'toys-store',
'path' => '/ts/toys-store',
'domain' => null,
'secure' => false,
'http_only' => true,
];