Laravel ErrorException 没有那个文件或目录

Laravel ErrorException No such file or directory

我已经通过 putty 终端将我的 Laravel 项目上传到 ubuntu 服务器上。 Composer 安装在服务器机器上,但是当我 运行 任何 artisan 命令时它给出一个错误。

$ php artisan serve
     ErrorException
    
      require(/var/www/html/healthapi.fynity.in/routes/api/v1/api.php): failed to open stream: No such file or directory

api.php已经存在了,但我不知道为什么会出现这个错误。尝试了 google.

中的所有解决方案

问题:


您可能之前更改了某些内容,例如文件的名称或路径。

解法:


首先,您使用以下命令清除所有配置。

$ php artisan config:clear

然后,您运行再次执行以下命令。

$ php artisan serve

更新 (2021/01/07):

您遇到以下错误:

ErrorException require(/var/www/html/healthapi.fynity.in/routes/api/v1/api.php): failed to open stream: No such file or directory at vendor/laravel/framework/src/Illuminate/Routing/RouteFileRegistrar.php:35 31

似乎库没有完全安装。您应该使用以下命令更新库:

$ composer update

然后,您再次运行执行以下命令:

$ php artisan serve