0

我有一个捕获“HTTP 301”响应的 php + curl 函数。该页面名为 get_header.php,位于文件夹 /exe 中:

function getheader($url)
// Use curl to fetch the HTTP Headers
$ch = curl_init($url);
curl_setopt($ch, CURLOPT_HEADER, 1); // just the header
curl_setopt($ch, CURLOPT_NOBODY, 1); // not the body
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 0);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
$output = curl_exec($ch);
preg_match('/Location: (.*)\n/', $output, $matches);
// if no redirect header then return the original url
return isset($matches[1]) ? $matches[1] : $url;
}
echo(getheader($_GET['url']));

但是,我需要在经典的 asp 页面中使用这个脚本。我试图通过 HTTP 调用它:

Dim x: Set x = CreateObject("MSXML2.ServerXMLHTTP")     
Dim y: y = "http://mysite.com/exe/get_header.php?url=" & url
x.Open "GET", y, false 
x.Send()
Dim z: z = x.ResponseText

尽管它有效,但这并不是理想的解决方案,因为两个页面都在同一个域中。事实上,它已经导致请求变慢。那么我该如何解决这个问题呢?理想的解决方案是我的 PHP 函数的 vbscript 或 javascript 版本。谢谢!

4

1 回答 1

1

这是解决方案:

Dim x: Set x = CreateObject("WinHttp.WinHttpRequest.5.1")
x.Option(6) = False
x.Open "GET", url, false
x.Send()
If x.status = 301 Then
Dim z: z = x.getResponseHeader("Location")
End If

感谢 FAngel 的回复!

于 2013-01-16T12:03:18.640 回答