Page is a not externally linkable
webdudek - 9:01 am on Oct 6, 2006 (gmt 0)
I did that after I verified that I'm not paying for this traffic.
I'm getting a lot of junk traffic that is coming from searchfeed.com.
My logs show that users from searchfeed.com never clicked even one click anywhere on my site. The problem is that they are coming through other PPC vendors so it is hard to get rid of them completely.
So I've decided to send them away:
if (array_key_exists("HTTP_REFERER",$_SERVER)){
if (strstr($_SERVER["HTTP_REFERER"],"searchfeed.com")){
Header( "HTTP/1.1 301 Moved Permanently" );
Header( "Location: [one.org"...] );
}
}
I wish I wouldn't have got it in the first place...