且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

Laravel 错误“ReflectionException"-“类 AppHttpKernel 不存在"

更新时间:2022-06-24 03:13:57

在composer.json中修改:

In composer.json change:

 "psr-4": {
        "App\": "myforms/app/"
    } 

到:

 "psr-4": {
        "App\": "app/"
    }

在服务器上,在您的源目录中,运行 composer update 然后 composer dump-autoload

On the server, in your source directory, run composer update then composer dump-autoload

Laravel 中的 PSR-4 查找相对于项目根目录的命名空间

PSR-4 in Laravel looks for namespaces relative to the root of the project