WapController.php 253 B

123456789101112131415
  1. <?php
  2. namespace wechat\controllers;
  3. use wechat\base\CommonController;
  4. class WapController extends CommonController{
  5. public function actionIndex()
  6. {
  7. header('Location:http://m.pinfangw.com');
  8. exit;
  9. }
  10. }