我正在开发类似游戏商店的东西。 在服务器上有一个dir内容很多exe游戏。 F.E.游戏网址看起来像http://site.com/games/gametitle.exe 我需要保护网址免受多次下载的影响。 我可以将md5用户的ip包含到url http://site.com/games/md5($ ip)/gametitle.exe中 但是如何处理呢?
答案 0 :(得分:2)
查看使用readfile
和header
将文件内容传递到页面,并使用会话跟踪用户访问链接的次数。
答案 1 :(得分:-2)
使用以下内容制作index.php
if(!isset($_GET['hash'])) throw new Exception("Missing hash");
if(!isset($_GET['file'])) throw new Exception("Missing filename.");
if(!isset$_GET['hash'] == md5($_SERVER['REMOTE_ADDR'])) throw new Exception("Invalid hash");
header('Location: http://domain/files/'. $_GET['file']);
像index.php一样链接?hash = HASH& file = filetodownload.exe。