The following code gives you the current url of the page you are:-
$currentUrl = $this->helper('core/url')->getCurrentUrl();
// Gives the base url of your magento installation
$baseUrl = Mage::getBaseUrl();
// Gives the url of media directory inside your magento installation
$mediaUrl = Mage::getBaseUrl('media');
Another way to get current url
$urlRequest = Mage::app()->getFrontController()->getRequest();
$urlPart = $urlRequest->getServer('ORIG_PATH_INFO');
if(is_null($urlPart))
{
$urlPart = $urlRequest->getServer('PATH_INFO');
}
$urlPart = substr($urlPart, 1 );
$currentUrl = $this->getUrl($urlPart);
Saturday, September 17, 2011
How to Get current Url of the page in Magento
Posted by Mohan Natarajan on 6:44 AM
0 comments:
Post a Comment