我创建了用于测试的模块并尝试从 url 调用 redme 操作。并且所有配置都已完成,并且一切正常,但是。在我的 redme 操作中,magento 不会重定向到另一个页面
<?php
class Test_Demo_IndexController extends Mage_Core_Controller_Front_Action
{
public function indexAction()
{
$this->loadLayout();
$block = $this->getLayout()->createBlock('capacityweb/Test','Test',array('template' => 'capacity/web/test.phtml'));
$this->getLayout()->getBlock('content')->append($block);
$this->renderLayout();
}
public function redmeAction()
{
$this->loadLayout();
$this->renderLayout();
$action=$this->getRequest()->getParam('action');
$id=$this->getRequest()->getParam('id');
if($action!=null && $id!=null)
{
$relContact = Mage::getModel('catalog/product')->getCollection();
}
Mage::app()->getFrontController()->getResponse()->setRedirect("http://google.com");
}
}
我已将此代码用于重定向
Mage::app()->getFrontController()->getResponse()->setRedirect("http://google.com");
但无法重定向。