<?php /** * Created by PhpStorm. * User: yingcai * Date: 2018/1/22 * Time: 下午5:34 */ namespace Frontend\Controller\Index; class RecommendController extends AbstractController { public function Index() { $lmId = I('get.lm_id', 0, 'rintval'); // 跳转直播详情 redirectFront('/app/page/live/detail/detail', array('_identifier' => APP_IDENTIFIER, 'lm_id' => $lmId)); } }