PHP重定向脚本

时间:2015-06-14 17:32:09

标签: php redirect

我希望使用我的自定义PHP脚本按照以下规则重定向我的网站访问者页面B:如果它们来自页面A,将被重定向到网址1,否则我将显示内容/或网址2.我使用此:

 <?php
$referer = $_SERVER['HTTP_REFERER'];
$rest = substr("$referer", -8);
if($rest == "send.php")// if they come from my website page "send.php"
{
echo "<meta http-equiv=\"refresh\" content=\"0;url=http://google.com\">"; 
}
else
{
echo "$rest";
include 'content.php'; 
}
?>

。 有人可以帮忙吗?

1 个答案:

答案 0 :(得分:1)

<?php
$referer = $_SERVER['HTTP_REFERER'];
if (strpos($referer,'send.php') !== false) 
{
echo "<meta http-equiv=\"refresh\" content=\"0;url=http://google.com\">"; 
}
else
{
echo "$rest";
include 'content.php'; 
}
?>

您也可以使用标题位置代替元重定向。

header("Location:http://www.google.com");