MainController.php 259 B

123456789101112131415
  1. <?php
  2. namespace mobile\controllers;
  3. use Yii;
  4. use yii\web\Controller;
  5. class MainController extends PublicController{
  6. public function actionIndex()
  7. {
  8. $host = Yii::$app->request->getHostInfo();
  9. return $this->renderPartial('index',['host'=>$host]);
  10. }
  11. }