在magento中重定向

Mah*_*man 5 magento magento-1.7

我正在研究自定义模块.我尝试将我的模块重定向到magento目录类别页面.该页面的链接是

HTTP://localhost/project/index.php/admin/catalog_category/index/key/cc65595b0383ca64fb245cb7de2359d8/

我试过以下方法但没有成功.

$this->_redirect($this->getUrl("admin/catalog_category/")); $this->_redirect("admin/catalog_category/");

Magento正在从网址中删除管理员?最后的网址看起来像那样

HTTP://localhost/project/index.php//catalog_category/index/key/cc65595b0383ca64fb245cb7de2359d8/

我没弄明白为什么管理员会从我的网址中跳过?有人可以帮忙吗?

Ana*_*ant 3

尝试下面的代码。

$this->_redirect("adminhtml/catalog_category");
Run Code Online (Sandbox Code Playgroud)

第一个 URI(即 adminhtml)是模块名称,对于管理区域,模块名称是 adminhtml。