Hvaja Vaja
Hvaja Vaja

Reputation: 3

This statement returning Yii::$app->request->baseUrl empty

i am new you yii2 and i want to get baseUrl in yii2 for that i had written following statement but it return nothing

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

Upvotes: 0

Views: 839

Answers (2)

Shaig Khaligli
Shaig Khaligli

Reputation: 5515

Best way to get Base url in Yii2 is:

Yii::$app->HomeUrl

Hope this will help you.

Upvotes: 1

Mohan
Mohan

Reputation: 616

try with : <?php echo Yii::$app->getUrlManager()->baseUrl ?>
Hope this will work.

Upvotes: 0

Related Questions