Thread
:
how to redirect traffic from google?
View Single Post
09-04-2006, 02:05 AM
cezam
Confirmed User
Join Date: Jun 2003
Location: CZ, EU
Posts: 1,363
PHP Code:
if (
ereg
(
'google'
,
$_SERVER
[
'HTTP_REFERER'
]))
{
Header
(
'Location: another_site_url'
);
exit;
}
this should work
PS. Your site may get banned from google for this
__________________
cezam
View Public Profile
Find More Posts by cezam