I'm fairly new to yii, would like to know how to change the default page pra that instead of going to the index is directed to a page comingsoon I have.
Thanks for your time.
You can create a new controller with it's own view: comingsoon (see http://www.yiiframework.com/doc/guide/1.1/en/topics.gii).
Add this in: protected\config\main.php
'defaultController' => 'comingsoon',
Method 1: Change view page rendered in SiteController.php's index action:
public function actionIndex() {
$this->render('index'); // change to "comingsoon"
}
Method 2: Let 404 error page display a coming soon message.
Method 3: Redirect to error page using URL manager rules in main.php:
'urlManager' => array(
'rules' => array(
'index'=>'site/index', // change "site/index" to "site/comingsoon"
...
Method 4: .htaccess
rewrite.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With