1
我正在使用laravel圖像干預。我在/storage/app/public/images的路徑中存儲了一些文件存儲在我的存儲文件夾中。當我嘗試生成路徑通過爲存儲文件顯示的錯誤路徑
$path=Storage::disk('local')->url('screenshot1.jpg');
,做DD($ PATH)的文件,它給我的路一樣,
「/storage/screenshot1.jpg」
我想一個路徑,
「/storage/app/public/images/screenshot1.jpg」
我也改變了我的filesystem.php一些變化序,以獲得所需的路徑,
'disks' => [
'local' => [
'driver' => 'local',
'root' => storage_path('app/public/images'),
],
'public' => [
'driver' => 'local',
'root' => storage_path('app/public/images'),
'visibility' => 'public',
],
's3' => [
'driver' => 's3',
'key' => 'your-key',
'secret' => 'your-secret',
'region' => 'your-region',
'bucket' => 'your-bucket',
],
],
,但仍然無法正常工作..
我有存儲在公共文件夾中這些圖像但它仍然返回相同的路徑,我必須對這個filesystem.php文件進行更改 –
做存儲/應用程序/公共/圖像的公共/圖像符號鏈接 –
這是我的gitbash返回, $ ln -s存儲/ app/public/images public/images ln:未能創建符號鏈接'public/images':沒有這樣的文件或目錄 –