hello, Does anybody give me an idea how to make this happen? I know about this little script: <metahttp-equiv="refresh"content="10;url=http://example.com"/> but I want to add a little script before this is loaded. I only want the url to refresh IF the referrer is from www.123.com.. so this is the scenario: if visitor A goes into www.xyz.com and he/she is coming from search engine the refresh code above will not load... if visitor B goes into www.xyz.com and he/she is coming from www.123.com the refresh/reload code above will kick in.. Any help is very much appreciated...
Hey Its very simple, check this out. You don't need to use HTML meta refresh if you are using php, here is the sample code : if (stripos(parse_url($_SERVER['HTTP_REFERER'], PHP_URL_HOST), 'google') !== FALSE) { header('Location: http://www.example.com'); }
Below code might work (not tested) : <?php $ref = $_SERVER['HTTP_REFERER']; if ($_SERVER['HTTP_REFERER'] == 'www.123.com') { header('Location: http://www.xyz.com'); } ?> PHP: Good Luck!