Reputation: 25
In localhost i have given baseurl in yii like this
<?php echo Yii::app()->baseUrl;?>
It is working in local but not working in live.
please give your opinion
Upvotes: 1
Views: 232
Reputation: 25
<?php echo yii::app()->getBaseUrl(true);?>
output:http://www.example.com
<?php echo yii::app()->getBaseUrl(false);?>
output:www.example.com
Upvotes: 0
Reputation: 3332
You missed the request part in between -
<?php echo Yii::app()->request->baseUrl;?>
Upvotes: 1