0

我必须将用户重定向到不同的页面。这就是我现在所拥有的。

header('Location: http://www.example.com/$confirmpage')

但它不起作用。它将它们重定向到http://www.example.com/ $confirmpage (未检索到值。)并给出 404 错误。

当我使用

echo "<script>document.location='http://www.example.com/$confirmpage';</script>";

有用。

但由于某些原因,我必须使用 header() 函数。

4

1 回答 1

5
header("Location: http://www.example.com/$confirmpage")

如果要在 php 字符串中引用变量,则必须使用"而不是'

http://php.net/manual/en/language.types.string.php

于 2012-05-27T20:13:06.430 回答