5

カスタムモジュールに取り組んでいます。モジュールを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はURLから管理者を削除していますか?最終的なURLはそのように見えます

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

管理者が私のURLからスキップしている理由がわかりませんでしたか?誰か助けてもらえますか?

4

1 に答える 1

3

以下のコードを試してください。

$this->_redirect("adminhtml/catalog_category");

最初のURI(つまりadminhtml)はモジュール名であり、管理領域の場合、モジュール名はadminhtmlです。

于 2013-03-26T05:15:01.193 に答える