WapController.php 339 B

123456789101112131415161718
  1. <?php
  2. /**
  3. * Created by PhpStorm.
  4. * User: xiaofeng
  5. * Date: 2018/4/19
  6. * Time: 下午2:52
  7. */
  8. namespace mobile\controllers;
  9. use mobile\base\CommonController;
  10. class WapController extends CommonController{
  11. public function actionIndex()
  12. {
  13. header('Location:http://m.pinfangw.com');
  14. exit;
  15. }
  16. }