使用 php 或 html 隐藏 m3u8 文件
Hide m3u8 file with php or html
我有一个来自外部服务器的 .m3u8 文件。
示例:(https://rt-usa.secure.footprint.net/1105.m3u8?streamType=live) 来自 RT 的免费电视信号。
是否可以使用域“隐藏”m3u8 路由?
示例:www.mysite.com/stream/rt.php
并且当它在 VLC 或类似的播放器中播放时,它通过直接读取源 url 来再现内容。
可能的方法:
- 使用 php 文件插入重定向 header
<?php header('Location: rt-usa.secure.footprint.net/1105.m3u8?streamType=live');
- 在 .htaccess (Apache) 或 NGinx 中。
我有一个来自外部服务器的 .m3u8 文件。
示例:(https://rt-usa.secure.footprint.net/1105.m3u8?streamType=live) 来自 RT 的免费电视信号。
是否可以使用域“隐藏”m3u8 路由?
示例:www.mysite.com/stream/rt.php
并且当它在 VLC 或类似的播放器中播放时,它通过直接读取源 url 来再现内容。
可能的方法:
- 使用 php 文件插入重定向 header
<?php header('Location: rt-usa.secure.footprint.net/1105.m3u8?streamType=live');
- 在 .htaccess (Apache) 或 NGinx 中。