这次给大家带来yii框架配置controller与action步骤详解,yii框架配置controller与action的注意事项有哪些,下面就是实战案例,一起来看一下。
在yii框架中,设置默认controller
在/protected/config/main.php添加配置
<?php return array( 'name'=>'Auto', 'defaultController'=>'auto',
上述配置了默认的controller为AutoController.php
在yii框架中,设置默认action
在AutoController.php中设置
class AutoController extends CController { public $defaultAction = 'test'; public function actionTest() { }
此时访问xxxx/index.php,会默认转到xxxx/index.php?r=auto/test,表示设置成功。
相信看了本文案例你已经掌握了方法,更多精彩请关注php中文网其它相关文章!
推荐阅读:
以上是yii框架配置controller与action步骤详解的详细内容。更多信息请关注PHP中文网其他相关文章!