另一种简单的方法是以编程方式运行执行 php artisan storage:link 命令
php artisan storage:link
在routes/web.php上
Route::get('/foo', function () { Artisan::call('storage:link'); });
我通过另一个通过terminal/cmd/shh创建符号链接的命令解决了这个问题:
ln -s /path/to/laravel/storage/app/public /path/to/public/storage
我也解决了这个问题,使用laravel web路由routes/web.php
另一种简单的方法是以编程方式运行执行
php artisan storage:link
命令在routes/web.php上
我通过另一个通过terminal/cmd/shh创建符号链接的命令解决了这个问题:
我也解决了这个问题,使用laravel web路由routes/web.php