Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
1.3k views
in Technique[技术] by (71.8m points)

video streaming - How to disable direct access to php file that streams an mp4

I have a php file that streams mp4 videos.

In my website I call the php file in the video tag src.

the php file is in a different server from website and its url is rewritten : server.xxxx.com/{id}

everything works perfectly but when I go on this link I can watch and download the video.

How can stop this from happening? Thanks.

question from:https://stackoverflow.com/questions/65831964/how-to-disable-direct-access-to-php-file-that-streams-an-mp4

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

You can limit the REFERER to the source page (like the video view page).

# video.php
<?php
if($_SERVER['HTTP_REFERER']!=="https://video.com/watch"){
  echo "Forbidden";
  exit();
}

In the case where it doesn't matter you can also just check if the HTTP_REFERER header is set, otherwise fail.

# video.php
if(!$_SERVER['HTTP_REFERER']){
  echo "Forbidden";
  exit();
}

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

2.1m questions

2.1m answers

60 comments

56.6k users

...