我想要的只是使用一个控制器,它应该处理我的laravel 4应用程序的每个请求.问题是*或其他地方的解决方案都没有对我有用.
这就是我现在拥有的:
Route::any('(.*)', function(){
return View::make('hello');
});
现在浏览页面时我每次都会收到错误说:
Symfony \ Component \ HttpKernel \ Exception \ NotFoundHttpException
希望有人能帮助我!
解决方法:
正则表达式设置为要求,而不是直接在路径中.
Route::any('{all}', function($uri)
{
return View::make('hello');
})->where('all', '.*');