How to change the url for Yii::app()->homeUrl in Yii?
|
|
|
|
|
Question: How to change the url for Yii::app()->homeUrl in Yii?
Answer:
-
Open the main configuration file protected/config/main.php
-
Now in the main.php file we can assign a Action or Url to homeUrl
return array(
 'basePath'=>dirname(__FILE__).DIRECTORY_SEPARATOR.'..',
 'homeUrl'=>array('site/login'),
 ....
|