48

我刚刚在 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

这里可能有什么问题?

4

2 回答 2

69

问题通过更改解决了

$app->run();

在 /public/index.php 到

$request = Illuminate\Http\Request::capture();
$app->run($request);
于 2015-04-19T19:34:24.777 回答
63

在你的index.php档案上。更改此行

$app->run();

进入:

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

更新

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

这也有效:

$app->run(
    $app->make('request')
);
于 2015-05-15T07:54:47.050 回答