a

69 阅读1分钟

<?php 
    /**
     * 首页控制器
     */
    class SiteController extends BaseController
    {
        public function actionIndex()
        {
            return $this->render('index');
        }
    }
?>