使用Laravel 5.4。它给了我一个
的错误RouteCollection.php第161行中的NotFoundHttpException:
我正在上传存储目录下的文件。我可以在project-root/storage/app/files
我也使用php artisan storage:link
创建了符号链接。当我访问生成的链接(http://example.com/storage/files/RcDPA5N6FpTWCnnh2w8bQO85id53oAiCeZgITpwB.png)时
但是,它让我找不到例外。
此外,我想知道我是否在引用资源,然后为什么要调用路由。
答案 0 :(得分:2)
该命令将为app/storage/public
生成一个符号链接,因此文件需要进入app/storage/public/files
,然后才能通过http://example.com/storage/files/RcDPA5N6FpTWCnnh2w8bQO85id53oAiCeZgITpwB.png访问它们。