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.
To redirect to login page $this->redirect(array('/site/login'));
To redirect to a particular controller/action
Before getting to the View and its form, let’s be clear as to how the View accesses the specific Model. A Controller may have this code:
Check this thread on Yii framework forum.
Copy/paste of the answer (by jodev):