Yii 2 static pages
问题 I can't show static pages. Try do it as described in doc here - http://stuff.cebe.cc/yii2-guide.pdf (on page 100) but when I enable prettyurl, it doesn't work. Added in urlManager rules: 'urlManager' => array( 'enablePrettyUrl' => true, 'showScriptName' => false, 'rules' => array( '' => 'site/index', 'login' => 'site/login', 'contacts' => 'site/contact', '<view:(break)>'=>'/site/page?&view=<view>', ), ), then in SiteController added: public function actions() { return [ ... 'page' => [ 'class