Redirecting to google or any other website using magento

I am trying to redirect to google.com using Magento.

Mage::app()->getResponse()->setRedirect('http://google.co.in')); 

But when I use this code, I also cannot open the home page. It shows a blank page.

What other code can I use instead so that I can redirect to google.com?

+4
source share
2 answers

This should do the trick:

 Mage::app()->getFrontController()->getResponse()->setRedirect('http://google.com'); 

Also, in your example, you end up with a double), this could be a problem in your code.

+1
source

to try

Mage::app()->getResponse()->setRedirect($url)->sendHeaders()->sendResponse();
exit();

0
source

Source: https://habr.com/ru/post/1435461/


All Articles