Aşağıdaki basit php web sayfası kodunu bakmak lütfen
bir günlük dosyası, her ziyaretçinin ip günlükleri ve başarıyla doğru sayfaya yönlendirildi olup olmadığı benim sunucuda oluşturulur, böylece nasıl kodumu değiştirebilirsiniz. böyle bir şey.
<?php
$a = $_SERVER['REMOTE_ADDR'];
if ( $a == "117.96.112.122" )
{
header("Location: ad_sams_mobile.html");
return true;
}
else
{
header("Location: ad_other_mobile.html");
return true;
}
?>