Well, if it can prevent my Google Adsense ads from showing up on that domain when my board is viewed on that domain, then I guess it does prevent hot linking.
Although I'm not quite sure what hotlinking is...
Ok everyone, this is what I have so far, please correct me if I am wrong.
PHP Code:
$domain = 'domainyouwantblocked.com';
If(str_replace('www.', '', $_SERVER['server_name']) == $domain) { die(); }
Ok this is what I have:
PHP Code:
If(str_replace('www.', '', $_SERVER['server_name']) == $domain)
{
die();
}
And I also have this:
PHP Code:
function display_adsense()
{
If(str_replace('www.', '', $_SERVER['server_name']) == $domain)
{
return FALSE;
}
else
{
return TRUE;
}
}
And also this
PHP Code:
if(display_adsense())
echo "adsense code";
}
Will these codes prevent Adsense from showing up in a domain I don't want them to, even if my site shows up on that domain?
Well, I have an idea as to how to block this type of cheap traffic, and it involves modifying the .htaccess file.
sweet!