Thursday 5 June 2014

Magento – Get base url inside controller:

Magento’s $this->getBaseUrl() method works inside template and blocks only but not in the controllers because it’s a Core_Block class method. To get the base url inside controller use instead this method.


<?php
 Mage::getUrl();
 ?>

No comments:

Post a Comment