我刚刚在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
这可能是什么问题?
答案 0 :(得分:67)
通过更改
解决了问题$app->run();
/public/index.php到
$request = Illuminate\Http\Request::capture();
$app->run($request);
答案 1 :(得分:56)
在index.php
文件上。改变这一行
$app->run();
分为:
$app->run($app->request);
使用make
方法比通过数组访问访问类别名更快。
这个也有效:
$app->run(
$app->make('request')
);