元重定向与 php 里面

meta redirect with php inside

我有一个 php 文件。在其中我想要这样的错误重定向:

<?php

$ponka = somerandomsite.com;

if (1=1)
    {echo '<META HTTP-EQUIV="Refresh" Content="0; URL=http://$ponka/error.php">'}
?>

如何实现?

php 包含很多错误,这是一个工作示例

<?php
$site = $_GET['site'] // will get the variable $site form a url like script.php?site=somerandomsite.com
$ponka = "somerandomsite.com";

if ($site == $ponka){
    echo "<META HTTP-EQUIV='Refresh' Content='0; URL=http://$ponka/error.php'>";
}
?>

此外,请记住 php 作为一个名为 header

的函数
<?php
$site = $_GET['site'] // will get the variable $site form a url like script.php?site=somerandomsite.com
$ponka = "somerandomsite.com";
if ($site == $ponka){
   header("Location: http://$ponka/error.php");
}
?>