to redirect bad referrers back to where they came from? If so what would be the best language to use?
For instance lets say blah.com is linking to twaddle.net, but twaddle.net doesn't wish blah.com to do so due to theft from site and using individual IP banning via .htaccess doesn't work due to resetting of IP etc
Thanks in advance!
Moddy
A cynic is a person who when smells flowers looks around for a coffin! :rolleyes:
-
ModGirl Design
My ArtWanted Portfolio
Renderosity Gallery
Comments
[PHP]<?php
$ref = getenv('HTTP_REFERER');
if($ref == "http://www.blah.com"
{
die("You are not allowed to visit this site");
}
?>[/PHP]
I think that'll do it anyway...
The Royal Ram
-
ModGirl Design
My ArtWanted Portfolio
Renderosity Gallery
The Royal Ram