是否有Laravel路线链接Angularjs /否则?

时间:2014-10-10 14:19:44

标签: angularjs laravel

我是Laravel的新手。正如我在标题中所说的那样,Laravel中是否有任何路线声明,如AngularJS(否则)?例如,我将定义一些路由,所有其他URI请求将重定向到某个页面/索引页面/错误页面?

3 个答案:

答案 0 :(得分:2)

你的问题有点不清楚,但听起来你正在寻找所有路线。

根据Laravel Snippets sites,如果您将以下内容添加到app/routes.php的末尾,则可以为您提供所需内容。

Route::get('{slug?}', function(){
    return 'Catch All';
})->where('slug', '.+');

答案 1 :(得分:0)

你显然甚至没有尝试使用Google:laravel routes

http://laravel.com/docs/4.2/routing

答案 2 :(得分:0)

在Laravel应用程序中,找到app / routes.php

保存路线的地方。您可以这样定义它们:

Route::get('/home', function() {
    return View::make('pages.home');
});

或致电控制器:

Route::get('/home', ['uses' => 'HomeController@index']);

您也可以调用HTTP动词,如下所示:

Route::post('/some/form', ['uses' => 'YourController@process']);

请点击此处了解详情:http://laravel.com/docs/4.2/routing