我正在编写一个php代码,它将我从localhost / login.php重定向到localhost / index.page。
我尝试使用header('Location: index.php)
方法,但我一直收到错误
警告:无法修改标头信息 - 已由...发送的标头
根据我的搜索错误是由于在header()
函数之前发送的一种输出。不幸的是,经过几个小时的努力,我无法弄清楚代码有什么问题,所以我现在正在寻找另一种方法。
另一种方法,将我从“localhost / login.php”页面重定向回我的主页“localhost / index.php”。
答案 0 :(得分:1)
不使用PHP进行重定向,而是使用导致浏览器遵循它的META刷新:
<meta http-equiv="refresh" content="0; url=http://example.com/">
有关META重定向的信息:Meta_refresh