如何从另一个网站上的URL
文件中获取text/php
,然后打开该网址链接?
如果没有一个只是默认为default.php
我可以访问这两个网站,
答案 0 :(得分:0)
如果我理解正确,您希望站点A在站点B上请求URL。然后,站点B将使用URL进行响应,并且您希望加载该站点。您可以使用以下
<?
$url = 'http://www.siteb.com/givemeaurl.php';
$content = implode('', file($url));//
//$content now contains the response from site B. If its only the URL you can use it directly, else you need to parse the results
if (strlen($content)>0) {
//we have a value
$newurl = $content;
} else {
//no value
$newurl = 'default.php';
}
//no open the new site
header('Location: ' . $newurl);
?>