dongmin1166 2010-12-23 09:57
浏览 360
已采纳

$ _SERVER ['HTTP_REFERER']总是空的 - PHP

<?php
$camefrom =$_SERVER['HTTP_REFERER'];
if ((substr($camefrom,0,26) == "http://www.fromperson.com")
header( 'Location: http://toperson.com' ) ;
?>

I need to redirect to www.to.com if the request was made from www.from.com. This code resides in www.thridperson.com/index.php

$camefrom is always empty.

I have read that $_SERVER['HTTP_REFERER'] is not reliable. Is there any other way to perform this redirection?

Note: I have lost the access to old domain i.e fromperson.com. So, I cannot change this redirection logic it has to be done this way and it has to done only in thirdperson.com/index/php

  • 写回答

2条回答 默认 最新

  • dsfw2154 2011-01-11 09:33
    关注

    No way to do according to my requirement

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?