我loginAction
在一个模块user
中,在控制器中application/modules/user/controllers/AuthController.php
。我想在成功登录后重定向到indexAction
in application/controllers/IndexController.php
。所以我有这个:
if ($result->isValid()) {
$auth->getStorage()->write($adapter->getResultRowObject());
$this->_helper->redirector('index', 'index');
return;
}
当我现在登录时,我收到消息Message: Invalid controller specified (index)
。我想这是因为我的登录名在模块user
中,而IndexController
在根应用程序中。
我怎样才能解决这个问题?