源码网商城,靠谱的源码在线交易网站 我的订单 购物车 帮助

源码网商城

yii框架配置默认controller和action示例

  • 时间:2021-07-06 12:17 编辑: 来源: 阅读:
  • 扫一扫,手机访问
摘要:yii框架配置默认controller和action示例
设置默认controller 在/protected/config/main.php添加配置
[u]复制代码[/u] 代码如下:
<?php return array(  'name'=>'Auto', 'defaultController'=>'auto',
上述配置了默认的controller为AutoController.php 设置默认action 在AutoController.php中设置
[u]复制代码[/u] 代码如下:
class AutoController extends CController {     public $defaultAction = 'test';     public function actionTest()     {         ...     }     ...
此时访问xxxx/index.php会默认转到xxxx/index.php?r=auto/test
  • 全部评论(0)
联系客服
客服电话:
400-000-3129
微信版

扫一扫进微信版
返回顶部