I have a question for the php gurus here.
Instead of doing the usual meta redirect:
Will this also hide the referrer?
or do you have to use the meta tags?
Instead of doing the usual meta redirect:
PHP:
<?
echo '<meta http-equiv="refresh" content="0;url=URL1">';
?>
Will this also hide the referrer?
PHP:
<?
header("Location: URL1");
?>
or do you have to use the meta tags?