我正在研究自定义模块。我尝试将我的模块重定向到magento目录类别页面。该页面的链接是
我尝试过以下方法但没有成功。
$this->_redirect($this->getUrl("admin/catalog_category/"));
$this->_redirect("admin/catalog_category/");
Magento正在从网址中删除管理员?最后的网址看起来像那样
http://localhost/project/index.php//catalog_category/index/key/cc65595b0383ca64fb245cb7de2359d8/
我没弄明白为什么管理员会从我的网址中跳过?有人可以帮忙吗?
答案 0 :(得分:3)
尝试以下代码。
$this->_redirect("adminhtml/catalog_category");
第一个URI(即adminhtml)是模块名称,对于admin区域,模块名称是adminhtml。