这行代码在我的localhost上运行时工作(并将您重定向到customer.php
页面)但在我将代码上传到Go-daddy时不起作用:
header("Refresh:0;customer.php");
答案 0 :(得分:2)
需要: -
header("location:customer.php");
如果显示headers already send
,请检查并删除两件事: -
如果您在此重定向行之前有任何打印代码(echo
或print()
或print_r()
),请删除该代码。
如果文件末尾有任何空格或空行(在关闭?>
之前或之后),请将其删除。
答案 1 :(得分:1)
在你的php文件中试试header('location: customer.php')
。这应该可以重定向到这个网站。小心路径!
答案 2 :(得分:1)
<meta http-equiv="refresh" content="0; url=http://example.com/" />
此处的内容将指代以秒为单位重定向页面的等待时间。