Hi,
I would like to know how to hide a path to a media file which is called via an embed tag:
page.php contains:
<embed src="path/file.mov">
I replaced it with this:
<embed src="retrieve.php">
with retrieve.php containing:
if($PHP_SELF == "page.php" || ereg("page.php",$HTTP_REFERER)):
header("Location: path/file.mov");
endif;
It works on a Mac but not on a PC (if you own a Mac you can try it on uk.djing.com: daft club for mac)
Could you help me ?