Laravel路线失败

时间:2014-01-19 00:40:15

标签: php laravel laravel-routing

我有点问题。 当我连接到网站:mysite.com/uebersicht时,我收到此错误:

Symfony \ Component \ HttpKernel \ Exception \ NotFoundHttpException

Controller method not found.

我的路线:

Route::controller('/', 'HomeController');
Route::controller('uebersicht', 'UebersichtController');

UebersichtController

<?php

class UebersichtController extends BaseController {
    public $layout = 'master';

    public function getIndex() {
        $this->layout->content = View::make('uebersicht.index');
        $this->layout->title = 'Server &Uuml;bersicht';
    }

}

HomeController工作,但UebersichtController没有......

2 个答案:

答案 0 :(得分:2)

更改路线的顺序,使'/'为最后一个。

答案 1 :(得分:2)

/ controller放在底部。

尝试以下方法:

Route::controller('uebersicht', 'UebersichtController');
Route::controller('/', 'HomeController');