Re: [PHP] How do I prevent remote loading of jpegs from my site

2001-10-28 Thread PHP Mail
With Apache this goes in the block. # Turn on the rewrite engine RewriteEngine on # The next line means ignore lines without a referrer RewriteCond %{HTTP_REFERER} !^$ # Then ignore lines that the referrer was any host at "our_domain.com" (the good guys). RewriteCond %{HTTP_REFERER} !^http://.

Re: [PHP] How do I prevent remote loading of jpegs from my site

2001-10-28 Thread Kurt Lieber
On Sunday 28 October 2001 10:26 am, you wrote: > So, the question is, how do I prevent this remoting loading from > happening. Well, since the users are linking directly to your image, then you can't use PHP commands to prevent it. (since that would requuire the user loading a PHP page that th

Re: [PHP] How do I prevent remote loading of jpegs from my site

2001-10-28 Thread Duncan Hill
On Sun, 28 Oct 2001, rodrigo wrote: > So, the question is, how do I prevent this remoting loading from > happening. Go to the Apache site (assuming you use apache) and look at the rewriting and so on. You'll find your answer in there. -- Sapere aude My mind not only wanders, it sometimes le