How to get the Base URL using the Yii Framework 1.1.x?
|
|
|
|
|
Question: How to get the Base URL using the Yii Framework 1.1.x?
Answer:
To get the Base URL within the Yii Framework use the following code
<?php echo Yii::app()->request->baseUrl; ?>
This can be called from anywhere within your Yii Framework application
|