- Joined
- Jan 16, 2005
- Messages
- 3,924
- Reaction score
- 6
in light of this zero tolerance policy on dodgy referers.
Here is a little PHP snippet to filter them out before you send your traffic.
This will filter out traffic coming from:
1millionvisitors.com
globalblaster.com
autosurfpro.com
webwidesurf.com
Here is a little PHP snippet to filter them out before you send your traffic.
PHP:
<?
$ref = $_SERVER["HTTP_REFERER"];
if ( false !== strpos( $ref, "webwidesurf" ) )
{
header("Location: http://www.articledirectory.net/");
exit;
}
else if ( false !== strpos( $ref, "autosurfpro" ) )
{
header("Location: http://www.articledirectory.net/");
exit;
}
else if ( false !== strpos( $ref, "globalblaster" ) )
{
header("Location: http://www.articledirectory.net/");
exit;
}
else if ( false !== strpos( $ref, "1millionvisitors" ) )
{
header("Location: http://www.articledirectory.net/");
exit;
}
else
{
header("Location: http://www.searchnut.com/?domain=domain.com");
exit;
}
?>
This will filter out traffic coming from:
1millionvisitors.com
globalblaster.com
autosurfpro.com
webwidesurf.com