InstructorGuideController.class.php
413 Bytes
<?php
/**
* Created by PhpStorm.
* User: zhoutao
* Date: 2018/1/19
* Time: 下午5:58
*/
namespace Frontend\Controller\Index;
class InstructorGuideController extends AbstractController
{
protected $_require_login = false;
/**
* 讲师引导跳转
*/
public function Index()
{
redirectFront('/app/page/live/room/room', ['lm_id' => I('get.lm_id', '', 'rintval')]);
}
}