与Lumen的NotFoundHttpException

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

这里可能是什么问题?

在你的index.php文件上。 改变这一行

 $app->run(); 

成:

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

更新

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

这个也可以工作:

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

问题通过改变解决了

 $app->run(); 

在/public/index.php中

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