NotFoundHttpException 与 Lumen

NotFoundHttpException with Lumen

我刚刚在 Windows 上安装了 Lumen,不幸的是我收到以下错误:

NotFoundHttpException in Application.php line 1093:

in Application.php line 1093
at Application->handleDispatcherResponse(array('0')) in Application.php line 1063
at Application->dispatch(null) in Application.php line 1006
at Application->run() in index.php line 28

这可能是什么问题?

问题已通过更改

解决
$app->run();

在/public/index.php到

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

在您的 index.php 文件上。更改此行

$app->run();

进入:

$app->run($app->request);

更新

使用 make 方法比通过数组访问 class 别名更快。

这个也有效:

$app->run(
    $app->make('request')
);