Laravel文件存储链接未找到异常

时间:2017-03-07 15:33:17

标签: php laravel file routes laravel-5.4

使用Laravel 5.4。它给了我一个

的错误
  

RouteCollection.php第161行中的NotFoundHttpException:

我正在上传存储目录下的文件。我可以在project-root/storage/app/files

中看到文件

我也使用php artisan storage:link创建了符号链接。当我访问生成的链接(http://example.com/storage/files/RcDPA5N6FpTWCnnh2w8bQO85id53oAiCeZgITpwB.png)时 但是,它让我找不到例外。

此外,我想知道我是否在引用资源,然后为什么要调用路由。

1 个答案:

答案 0 :(得分:2)

该命令将为app/storage/public生成一个符号链接,因此文件需要进入app/storage/public/files,然后才能通过http://example.com/storage/files/RcDPA5N6FpTWCnnh2w8bQO85id53oAiCeZgITpwB.png访问它们。