When I am going to my application, the page is redirect to the index page in Yii.
As per requirement, I want to redirect to the login page of the user module just like /user/login.
So for doing that I have changed the sitecontroller code index to user/login, but it showed an error.
Can some one tell me how to redirect the user/login page by default instead of index page? Any help and suggestions will be highly appreciable.
Check this thread on Yii framework forum.
Copy/paste of the answer (by jodev):
No need to extend anything. All you have to do is open up
protected/config/main.phpand add the following to the config array:return array( 'basePath' => dirname(__FILE__) . DIRECTORY_SEPARATOR . '..', 'name' => 'My application', 'defaultController' => 'myController/myAction', // <--- add this line and replace with correct controller/action
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With