|
发表于 2025-9-19 09:31:55
|
显示全部楼层
<?php
$id = isset($_GET['id']) ? trim($_GET['id']) : null;
if (!$id) exit;
$html = @file_get_contents('https://www.nxtv.com.cn/19/19kds/dsp/');
if (!$html) exit;
$pattern = '/id="' . preg_quote($id, '/') . '".+?"liveUrl":"(.*?)"/';
if (!preg_match($pattern, $html, $matches)) exit;
$url = stripslashes($matches[1]);
$parsed = parse_url($url);
if (isset($parsed['host'])) {
$url = str_replace($parsed['host'], 'livepgc.cmc.ningxiahuangheyun.com', $url);
}
header('Location: ' . $url);
exit;
/*
宁夏卫视看不了WAF拦截
宁夏卫视频道,宁夏.php?id=56
宁夏公共频道,宁夏.php?id=111
宁夏经济频道,宁夏.php?id=61
宁夏文旅频道,宁夏.php?id=71
宁夏少儿频道,宁夏.php?id=67
*/ |
|