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