Reputation: 3
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
Reputation: 5515
Best way to get Base url in Yii2 is:
Yii::$app->HomeUrl
Hope this will help you.
Upvotes: 1
Reputation: 616
try with : <?php echo Yii::$app->getUrlManager()->baseUrl ?>
Hope this will work.
Upvotes: 0