第一次重定向失败时的第二次重定向

时间:2012-08-03 13:46:19

标签: php jsp redirect

我已编写此代码以将访问者重定向到我的笔记本电脑中托管的服务器(动态IP)

我使用第二个php脚本来更新数据库中的ip

    <?php
    //redirect.php
    $con = mysql_connect($db_hostname,$db_admin,$db_password);
    if (!$con){
        echo "Couldn connect to server !!";
    }
    $sql ="select ip from $db_name.redirect WHERE id=0";
    $result = mysql_query($sql,$con);
    $ip = "error.php";
    while($row = mysql_fetch_array($result)){
    $ip=$row[0];
    }
    //Header( "HTTP/1.1 301 Moved Permanently" ); 
    $forward = "Location: http://$ip";
    header( $forward ) ;
    //Header(  "Location: errorMsg.php"); 
    ?>

但我的笔记本电脑服务器很少见, 我想知道如果第一次重定向失败,是否可以重定向到 errorMsg.php

也可以用jsp ??

实现

1 个答案:

答案 0 :(得分:0)

我想你可以ping IP,如果没有响应,那就使用errorMsg.php。试试这个:

$dsn = 'mysql:dbname='.$db_name.';host='.$db_hostname;

try
{
        $dbh = new PDO($dsn,$db_admin,$db_password);
} catch(PDOEXception $e) {
        echo 'Couldn connect to server !!';
}

$sql = 'SELECT ip FROM redirect';
$sth = $dbh->prepare($sql);
$sth->execute();
$ip = $sth->fetchColumn();
$location = 'errorMsg.php';
if($ip && $fp=fsockopen($ip,80,$en,$es,1)) {
        fclose($fp);
        $location = 'http://'.$ip;
}

header('Location: '.$location);

这假设您可以通过某种方式使用所需的IP更新数据库。

PS - 我推荐PDO,如果不明显的话。