Index.php 440 字节
<?php
/**
 * @ pcl
 * 大屏登录跳转设置
 */

namespace app\login\controller;

use app\common\controller\Frontend;
use think\Db;

class Index extends Frontend
{

    protected $noNeedLogin = '*';
    protected $noNeedRight = '*';
    protected $layout = '';

    public function index()
    {
        //大屏登录跳转设置
        $url = 'http://' . $_SERVER['HTTP_HOST'] . '/rain7';
        header("Location:" . $url);
    }

}