2

composerでルーメンをインストールしようとしているので、以下のコマンドを使用しました

composer create-project --prefer-dist laravel/lumen api

しかし、何らかの理由で、パブリックフォルダーにアクセスするだけで、何かをする前にこのエラーが発生します。

Sorry, the page you are looking for could not be found.

1/1
NotFoundHttpException in RoutesRequests.php line 442:
in RoutesRequests.php line 442
at Application->handleDispatcherResponse(array('0')) in RoutesRequests.php line 381
at Application->Laravel\Lumen\Concerns{closure}() in RoutesRequests.php line 624
at Application->sendThroughPipeline(array(), object(Closure)) in RoutesRequests.php line 382
at Application->dispatch(null) in RoutesRequests.php line 327
at Application->run() in index.php line 28
4

1 に答える 1

3

サブディレクトリからルーメンを実行していると仮定すると、 public/index.php を次のように変更します。

$app->run();

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

それは私のためにトリックをしました。

于 2016-03-14T00:59:38.070 に答える