标头位置参数未出现在网址中

时间:2016-12-19 09:08:49

标签: php parameters header location

我正在使用Header()转到另一个页面并在URL中传递参数。它工作正常但现在由于某种原因,该参数不会出现在URL中。

以下是代码:

echo $actual_link = "http://$_SERVER[HTTP_HOST]$_SERVER[REQUEST_URI]?uuid=$uuid";
header('Location:'.$actual_link);
exit;

这是echo $actual_link

的结果
http://creatives.com/test/quiz-result?uuid=1efbe46985960aa96fd991a3cfc4dff4

这是浏览器的网址(Google Chrome)中显示的内容

http://creatives.com/test/quiz-result

我很困惑。

欢迎所有的想法。

0 个答案:

没有答案