default home page in yii goes to site/index. what if you wants to use a different controller, module or view for home page?
config rules in urlManager
in config/main.php,
PHP:
| ... |
| 'components' => array( |
| 'urlManager' => array( |
| 'rules' => array( |
| '' => 'newcontroller/newaction', |
| .... |
| ), |
| ), |
| ), |
| ... |
Leave a comment