本文介紹了yii框架中配置默認controller和action的方法,分享一個設置默認controller和action的例子,有學習yii的朋友可以參考下,個人感覺還不錯的。
在yii框架中,設置默認 controller 在/protected/config/main.php添加配置,具體代碼如下:
<?php return array( 'name'=>'Auto', 'defaultController'=>'auto', ......
上述配置了默認的 controller 為 AutoController.php
在yii框架中,設置默認 action 在剛才定義的 AutoController.php 中設置,具體代碼如下:
<?php class AutoController extends CController{ public $defaultAction='test'; public function actionTest(){ ... } ...
此時訪問 xxxx/index.php,會默認轉到 xxxx/index.php?r=auto/test,表示設置成功。