我想从当前网址进行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
有什么办法吗?
答案 0 :(得分:3)
header("Location: pageB.php?". $_SERVER['QUERY_STRING']);