How do i point to homepage using CHtml?
I tried CHtml::link('go home',array(''))
but it seems to point to current page.
I want to point to index.php only.
How can i do this ?
Try this :-
echo Chtml::link('Go Home', '/');
This is tested and it works.
Try CHtml::link('/',array(''))
You could also use Yii::app()->request->getBaseUrl(true)
Simply use Yii::app()->homeUrl
echo CHtml::link('go home',array(Yii::app()->homeUrl));