[ 'class' => 'yii\web\ErrorAction', ], 'captcha' => [ 'class' => 'yii\captcha\CaptchaAction', 'fixedVerifyCode' => YII_ENV_TEST ? 'testme' : null, ], ]; } public function actionIndex() { $this->redirect(['site/index']); } public function actionCommon(/*$performer_id*/) { return $this->render('common'); } public function actionPortfolio(/*$performer_id*/) { return $this->render('portfolio'); } public function actionBlogList(/*$performer_id*/) { return $this->render('blog-list'); } public function actionBlogView(/*$performer_id, $article_id*/) { return $this->render('blog-view'); } }