如何从Magento中的Controller Action重定向或调用不同的Controller Action?

Tha*_*anu 3 redirect action controller call magento

我想cms/index/noRoute从我的一个自定义模块的控制器操作中调用Action,我该怎么做?

我试过了,

$this->_redirectUrl('cms/index/noRoute')
Run Code Online (Sandbox Code Playgroud)

$this->_forward('cms/index/noRoute')
Run Code Online (Sandbox Code Playgroud)

重定向网址的变化也很少,例如"*/cms/index/noRoute"等,其中没有变化.我该怎么做?

Kan*_*tel 5

使用以下代码:

$this->_redirect('defaultNoRoute');
return;
Run Code Online (Sandbox Code Playgroud)

它为我工作.