or you can just completely hide the source of the image or whatever the content is instead of relying on referrer and do in a script like
<?php
header("content-type: image/jpeg");
echo file_get_contents("http://whatever.com/whatever.jpg");
?>
or just do remote reading like that. Header is only necessary based on the datatype
naturally if its same server different domain you can just do local path but i dont think that is the case with you
in your case I don't think referrer will make a difference
|