我在 Yii 的路由规则上遇到了一些问题。我目前有一个用户控制器,用于更新两个帐户信息部分。
class UsersController extends CController {
public actionAccount() {
//Do Stuff
}
public actionAccountFindMe() {
//Do More Stuff
}
}
现在在我的网址管理器中,我制定了以下规则:
'urlManager'=>array(
'rules'=>array(
'account'=>'users/account',
'account/findme'=>'users/accountfindme',
),
),
/account 的规则工作得很好,但 'account/findme' 的规则总是抛出一个错误:
Error 404
Unable to resolve the request "account/findme".
抛出这个错误是什么,为什么模式不匹配?
PS 如果我输入 /users/accountfindme ,我就可以访问该路线。