0

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

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

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

4

1 回答 1

3

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

re.php看起来像:

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

只是一个指导方针。

于 2013-01-18T19:50:36.610 回答