标签: php html redirect
我正在寻找一种方法将基于PHP序列的页面重定向到另一个URL,就像这样
http://example.com/re.php?=http://google.com
该页面将重定向到 google.com 。我该怎么做?
答案 0 :(得分:3)
url更像http://example.com/re.php?url=http://google.com
http://example.com/re.php?url=http://google.com
re.php看起来像:
re.php
header('Location: ' . $_GET['url']);
只是一个指南。