mehmetkadi adlı üyeden alıntı

function is_from_google($param)
{
if(empty($param) || !isset($param) || !strstr($param, "google") )
{
return false;
}
if(preg_match("/google/i", $param) )
{
return true;
}else
{
return false;
}
}

if(is_from_google($_SERVER["HTTP_REFERER"]) )
{
header("Location:http://site.com/klasoradi");
exit();
}else
{
echo "Google degil";
}


Arkadaş için araştırdım buldum ama, sanırım ufak hataları var. ben uğraştım ama bulamadım çalıştırabilen olursa mutlu olurum.


sorueki adlı üyeden alıntı

Meta ile de yapabilirsiniz. Ancak meta kullanımı, ekler nedeniyle bozuyor. Buyrun JS ile deneyin.

<script>
(function(){
setTimeout(function(){
window.location="https://google.com.tr/";
},10000); /* 1000 = 1 saniye*/
})();
</script>


Ben geç kalmışım. Kod bulunmuş. Kolay gelsin.

function is_from_google($param)
{
if(empty($param) || !isset($param) || !strstr($param, "google") )
{
return false;
}
if(preg_match("/google/i", $param) )
{
return true;
}else
{
return false;
}
}

if(is_from_google($_SERVER["HTTP_REFERER"]) )
{
header("Location:http://site.com/klasoradi");
exit();
}else
{
echo "Google degil";
}


Asıl amaç, bu kodun düzeltilmesi olmalı bence.