在yii中更改默认页面

jos*_*790 5 php yii

我对yii相当新,想知道如何更改默认页面pra而不是转到索引是指向我所拥有的页面.

谢谢你的时间.

Sam*_*iew 2

方法 1:更改在 SiteController.php 的索引操作中呈现的视图页面:

public function actionIndex() {
    $this->render('index'); // change to "comingsoon"
}
Run Code Online (Sandbox Code Playgroud)

方法二:让404错误页面显示即将到来的消息。

方法 3:使用 main.php 中的 URL 管理器规则重定向到错误页面:

'urlManager' => array(
    'rules' => array(
        'index'=>'site/index', // change "site/index" to "site/comingsoon"
        ...
Run Code Online (Sandbox Code Playgroud)

方法四:.htaccess重写。