Nasıl değilse $ _SERVER ['HTTP_REFERER'] yönlendirmek için?

0 Cevap
<?PHP
if (ereg("www\.test", $_SERVER['HTTP_REFERER']) != true)
{
    header("location http://www.example.com");
    end;
}
    echo "111";
        //dosomting?
?>

Hala çalışmıyor

0 Cevap