我有一个PHP文件生成的视频链接 https://tv3lpc.gq/tv3lpc/staple/ost.php?quality=low&num=0 我可以直接在VLC上运行提取的链接,但是当我将链接放入PHP文件中以进行重定向时,它将无法正常工作。我试图添加用户代理VLC / 2.2.8 LibVLC / 2.2.8,但不起作用。
$url = file_get_contents('https://tv3lpc.gq/tv3lpc/staple/ost.php?quality=low&num=0');
$ch3 = curl_init();
curl_setopt($ch3, CURLOPT_URL, $url);
curl_setopt($ch3, CURLOPT_HEADER, true);
curl_setopt($ch3, CURLOPT_FOLLOWLOCATION, true);
curl_setopt($ch3, CURLOPT_HTTPHEADER, array(
'User-Agent: VLC/2.2.8 LibVLC/2.2.8')
);
curl_setopt($ch3, CURLOPT_RETURNTRANSFER, true);
$a = curl_exec($ch3);
curl_close ($ch3);
header("Location: ". $a);
任何人都可以指导我问题出在哪里并自行测试文件