Method 1: Change the view page displayed in the SiteController.php index action:
public function actionIndex() {
$this->render('index');
}
Method 2. Give the 404 error page the next message.
Method 3: Redirect to the error page using the URL management rules in main.php:
'urlManager' => array(
'rules' => array(
'index'=>'site/index',
...
Method 4: .htaccessrewrite.
source
share