IndexController.class.php
468 Bytes
<?php
/**
* 活动中心前端页面入口
*/
namespace Frontend\Controller\Index;
class IndexController extends \Common\Controller\Frontend\AbstractController
{
public function Index()
{
$ac_id = I('get.ac_id');
if (empty($ac_id)) {
return true;
}
// 跳转活动详情
redirectFront('/app/page/lottery/integral-lottery',
['_identifier' => APP_IDENTIFIER, 'ac_id' => $ac_id]);
}
}