Give Store URL for PHTML Pages in Magento

magento-1.9url

If we click on one link, we have to display the following url

http://2.kidsdial.com/marketplace/marketplaceaccount/new/

i can use the code like this :

<a href = "http://2.kidsdial.com/marketplace/marketplaceaccount/new/">click</a>

but i think this is not good practice

I am trying this ,

<a href = '{{store direct_url="marketplace/marketplaceaccount/new/"}} '>

but its not working.

Best Answer

you working in phtml file you can use this code for url

<?php echo Mage::getUrl('marketplace/marketplaceaccount/new/'); ?>
Related Topic