2015-10-30 29 views
1

您好,我尝试在后端模块的magento中重定向。我使用以下查询。Magento:如何使用管理中的某些参数重定向

$this->_redirect('*/*/'); 

这是工作,但在GET参数在网址我的模块页面不会没有类别编号的工作。

所以我用下面的代码

$this->_redirect('*/*/?category_id='.$category_id); 

但现在这个时候直接进入主页。请任何人有任何解决办法吗?

回答

1
$this->_redirect('*/*/', array('_query', array('category_id',$category_id)); 

应该做的工作,也看到:https://stackoverflow.com/a/4540289/622945

+0

这是工作的罚款..我从您提供的链接代码...谢谢大哥:) –