基于URL序列的PHP重定向页面?

时间:2013-01-18 19:48:46

标签: php html redirect

我正在寻找一种方法将基于PHP序列的页面重定向到另一个URL,就像这样

http://example.com/re.php?=http://google.com

该页面将重定向到 google.com 。我该怎么做?

1 个答案:

答案 0 :(得分:3)

url更像http://example.com/re.php?url=http://google.com

re.php看起来像:

header('Location: ' . $_GET['url']);

只是一个指南。