调用 redirect PHP 函数

Call redirect PHP Function

我正在尝试制作一个简单的 php 重定向文件,它将在浏览器上像这样工作:

File.php?redirect_url=http://www.example.com

它应该重定向到任何写在 redirect_url=WEBSITE 中的网站 不知道File.php应该怎么样

if(function_exists($_GET['redirect_url'])) {
$_GET['redirect_url']();
}

使用这个:

header("location:$_GET['redirect_url']");

你的代码应该像-

 if(isset($_GET['redirect_url'])){
    $redirect=$_GET['redirect_url'];

        header("LOCATION:".$redirect);
      }

您不需要任何函数来实现您正在尝试做的事情。

if (isset($_GET['redirect_url'])) {
    header("Location: $_GET[redirect_url]");
}