1

我创建了用于测试的模块并尝试从 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");

但无法重定向。

4

1 回答 1

2

尝试使用这个:

$this->_redirectUrl('http://google.com');

代替

Mage::app()->getFrontController()->getResponse()->setRedirect("http://google.com"); 
于 2013-07-29T13:11:13.210 回答