看到 php header 函数修改查询字符串,如果它是 URL,这很奇怪。我使用了这样的标头函数
header('Location: http://www.example.com/account-type?goto=http://www.google.com/hello');
这是重定向到http://www.example.com/account-type?goto=http/hello
修改后的查询字符串
如果我使用相对 URL
header('Location: /account-type?goto=http://www.google.com/hello');
这将重定向到http://www.example.com/account-type?goto=http://www.google.com/hello
谁能告诉我如何解决这个问题?