标题重定向和保留URL参数

时间:2014-08-19 16:47:51

标签: php

我想从当前网址进行header('Location: pageB.php')重定向:

http://example.com/pageA.php?one=124214412&?two=ofisajfsa8938

如何在标题重定向后http://example.com/pageB.php之后保留参数?

我总是以http://example.com/pageB.php而不是http://example.com/pageB.php?one=124214412&?two=ofisajfsa8938

结束

有什么办法吗?

1 个答案:

答案 0 :(得分:3)

header("Location: pageB.php?". $_SERVER['QUERY_STRING']);