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.
我最近从共享主机升级到 vps。
在我的 php 脚本中,我有一个如下的标头重定向:
header("Location: index.php?success");
问题是,它成功重定向到 index.php 但
?success
在 index.php 的末尾丢失。
我很确定我的代码是正确的,因为相同的脚本在共享主机中运行良好。
所以帮忙???
我必须对我的 vps 进行任何更改吗???
Location根据RFC2616 , HTTP标头必须是绝对路径。
Location