How to Check if current page is Homepage or not in magento?

Simply add this code in your page
this code will check if current page is Homepage or not in magento.


<?php
if($this->getUrl('') == $this->getUrl('*/*/*', array('_current'=>true, '_use_rewrite'=>true))):
echo "yes homepage of magento";
else:
echo "this is not Homepage";
endif;
?>

Comments