Trideep Dhara
Trideep Dhara

Reputation: 25

Base Url is not working in live in yii

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

Answers (2)

Trideep Dhara
Trideep Dhara

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

Rohan
Rohan

Reputation: 3332

You missed the request part in between -

 <?php echo Yii::app()->request->baseUrl;?>

Upvotes: 1

Related Questions