Nginx强制域名跳转到主域名代码

2024-03-30 385 0

 if ($host != 'gfw.upward-club.com') {
    
        rewrite ^/(.*)$ https://gfw.upward-club.com/?url=$host$1 permanent;
    }
public function index(Request $request)
    {
        $param = $request->param();
        $url = $request->param('url');
        //如果没有传递URL链接
        if(!$url){
            $data = [
              'old_url' => 'https://gfw.upward-club.com/' ,
                'new_url'=> 'https://gfw.upward-club.com/',
            ];
            View::assign('data',$data);
        }
        $result = Db::name('idcmaster_gfwfree')->where('old_url',$url)->find();
        if ($result){
            View::assign('data',$result);
        }else{
            $data = [
                'old_url' => 'https://gfw.upward-club.com/' ,
                'new_url'=> 'https://gfw.upward-club.com/',
            ];
            View::assign('data',$data);
        }
        return view();
    }

 

    相关文章

    织音云上新香港Platinum 8358处理器性能怪兽,爆炸高配折后最低仅需32元/月,数据对标物理机
    2025年华纳云新年焕新季,香港云4H4G3M特惠696元/年,E5物理服务器688元/月起
    莱卡云:2025年1月香港云服务器、美国云服务器、日本云服务器促销活动
    php使用ip-api根据ip地扯获取位置信息
    PHP简单实现随机一言
    万维电讯:香港VPS推荐 4H4G3M CN2 GIA线路三网直连 仅需$9.9/月

    发布评论