48

I've just installed Lumen on Windows and unfortunately I'm getting the following error:

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

What may be the problem here?

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 に答える