Just installed Lumen and got NotFoundHttpException

前端 未结 4 1143
梦如初夏
梦如初夏 2021-01-04 03:54

I\'m searching for a solution ... it\'s getting so frustrating. After a fresh installation of Lumen by Laravel, I simply can\'t access the \"/\" route. When I try to, it thr

4条回答
  •  青春惊慌失措
    2021-01-04 04:16

    The problem was solved by changing the

    $app->run();
    

    in /public/index.php to

    $request = Illuminate\Http\Request::capture();
    $app->run($request);]
    

提交回复
热议问题