我编写了一个程序来自动缩短链接,它使用我网站的 api,但是当我点击一个缩短的链接时我必须这样做(比如:goo.gle/~~~)这个程序不使用我的服务并重定向到链接没有 Reshorten 链接!如您所知,更短的链接服务现在更改了 url,我需要一个程序,如果在我的值中找到类似 (goo.gle) 的内容,那么不管 Reshorten 服务并使用 api
elseif ($url == "http://goo.gle/")
{
header("HTTP/1.1 301 Moved Permanently");
header("Location: $url");
}
else
{
$orls = "http://losa.net/api.php?key=dc4c0b38b62b44f69467c33eaf7ce08b&uid=128&adtype=int&url=".$url."";
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL,$orls);
curl_setopt($ch,CURLOPT_RETURNTRANSFER,1);
$content=curl_exec ($ch);
curl_close ($ch);
header("HTTP/1.1 301 Moved Permanently");
header("Location: $content");
}