Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想重定向访问者如下
<?php $page2_id = 2; header("Location:./index.php?page=$page2_id"); ?>
地址栏上的页面是正确的,但是页面没有出现,我收到了这个错误
Firefox 检测到服务器正在以永远不会完成的方式重定向对该地址的请求。
以下重定向也不起作用!
<?php header("Location:./index.php?page=26"); ?>
谁能帮我?
尝试删除点后Location:
Location:
$page2_id = 2; header("Location:/index.php?page=$page2_id");