如何重定向到$ number的链接

时间:2012-07-02 21:36:08

标签: php redirect header

我想将访问者重定向到以下

<?php

$page2_id = 2;          
header("Location:./index.php?page=$page2_id");

?>

地址栏上的页面是正确的,但页面没有出现,我收到了此错误

  

Firefox检测到服务器正在重定向请求   这个地址永远不会完成。

以下重定向也不起作用!!

<?php

header("Location:./index.php?page=26");

?>

任何人都可以帮助我吗?

1 个答案:

答案 0 :(得分:0)

尝试在Location:

之后删除点
$page2_id = 2; 
header("Location:/index.php?page=$page2_id");