2014-05-14 3 views
1

나는 \ list.phtml 비교 \ 카탈로그 \ 제품에, 그리고 난 다음과 같이 홈페이지로 리디렉션 할 :Magento : 템플릿에서 홈 페이지로 리디렉션 하시겠습니까?

나는 몇 가지를 시도
if($someThing) { 
    // redirect to homepage 
    $this->_redirect('home'); // --> doesnt work 
    $this->_redirect(Mage::getBaseUrl()); // --> doesnt work 
} 

는, 아무도 지금까지 일했다. 어떻게해야합니까?

감사합니다.

답변

2

$ this-> _ redirect는 컨트롤러에서만 사용할 수 있습니다.

대신을 시도해보십시오

Mage::app()->getFrontController()->getResponse()->setRedirect($this->getBaseUrl()); 
2

시도

header("Location:".Mage::getBaseUrl()); 
exit(); 

또는

Mage::app()->getFrontController()->getResponse()->setRedirect(Mage::getBaseUrl()); 
exit(); 

이하
관련 문제