I don't know about htaccess but if you are using php includes I suppose you add some code to your header? or just the page in question if all visitors are going to just one page to check if the referrer contains anything with banana123.com
something like;
PHP Code:if (strpos($_SERVER['HTTP_REFERER'], 'banana123.com') !== false){
header("Location: http://www.mysite.com/notallowed.html");
exit;
}
LinkBack URL
About LinkBacks
Reply With Quote

Bookmarks