SiteController.php 226 Bytes EditWeb IDE 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 <?php namespace backend\controllers; class SiteController extends BaseController { /** * [默认首页] * @author libingke * @return string */ public function actionIndex() { return $this->render('index'); } }