php – 获取所有路线,Laravel 4

我想要的只是使用一个控制器,它应该处理我的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', '.*');
上一篇:分享Silverlight/WPF/Windows Phone一周学习导读(08月01日-08月06日)


下一篇:php – Laravel上一个和下一个记录