<?PHP if (ereg("www\.test", $_SERVER['HTTP_REFERER']) != true) { header("location http://www.example.com"); end; } echo "111"; //dosomting? ?>
It still not working
exit
end
ereg
preg_match
Try this:
<?php if (!preg_match("www\.test", $_SERVER['HTTP_REFERER'])) { header("Location: http://www.example.com"); exit(); } //do stuff... ?>
Sign up using Google
Sign up using Facebook
Sign up using Stack Exchange
By posting your answer, you agree to the privacy policy and terms of service.
tagged
asked
2 years ago
viewed
374 times
active
exitnotend– BoltClock♦ Nov 16 '10 at 4:29eregis deprecated. Usepreg_match. – netcoder Nov 16 '10 at 4:39