Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Redirect to login page instead of index page in Yii

Tags:

php

yii

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.

like image 924
NewUser Avatar asked Feb 28 '12 11:02

NewUser


1 Answers

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.php and 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
like image 103
Frosty Z Avatar answered Nov 17 '22 20:11

Frosty Z