使用Yii进行URL管理

时间:2014-01-09 15:43:23

标签: yii yii-url-manager

我有url:/ profile / profileBase / index其中“profile”是模块,“profileBase”是controller,“index”是action。 我想url manager会接受如下路由:/ profile / read / index 其中“read”可能是控制器的别名。 有没有办法使用网址管理器规则? 感谢

2 个答案:

答案 0 :(得分:1)

   'urlManager' => array(
        'urlFormat' => 'path',
        'showScriptName' => false,
        'rules' => array(
          'profile/read/index '=>'profile/profileBase/index'
        ),
    ),

答案 1 :(得分:0)

您只需在urlManager config:

中添加以下规则即可
'profile/read/index'=>'profile/profileBase/index',