我有点问题。 当我连接到网站: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 Übersicht';
}
}
HomeController工作,但UebersichtController没有......
答案 0 :(得分:2)
更改路线的顺序,使'/'为最后一个。
答案 1 :(得分:2)
将/ controller
放在底部。
尝试以下方法:
Route::controller('uebersicht', 'UebersichtController');
Route::controller('/', 'HomeController');