Showing posts with label referrer. Show all posts
Showing posts with label referrer. Show all posts

Thursday, 7 May 2015

How to redirect to referrer from Observer in Magento ?

we can redirect to the referrer from magento observer like below


Mage::getSingleton('core/session')->addError('your error message'); // to show your message after redirection
$url = Mage::helper('core/http')->getHttpReferer() ? Mage::helper('core/http')->getHttpReferer()  : Mage::getUrl();
Mage::app()->getFrontController()->getResponse()->setRedirect($url);
Mage::app()->getResponse()->sendResponse();
exit ;