如何在重定向时找到最终网址

发布于 2024-12-09 17:26:30 字数 415 浏览 0 评论 0原文

可能的重复:
如何获取真实网址file_get_contents 之后是否发生重定向?

我正在使用 file_get_contents('http://someurl.com/1893849') 来获取网址的内容,但是url 被重定向。例如,/1893849 最终位于 /some-url-path。有没有办法,除了获取文件内容之外,还可以知道结束路径?

Possible Duplicate:
How to get the real URL after file_get_contents if redirection happens?

I'm using file_get_contents('http://someurl.com/1893849') to get contents of a url, but the url gets redirected. For example /1893849 ends up at /some-url-path. Is there a way, in addition to getting the file contents, to also know the end path?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

小糖芽 2024-12-16 17:26:30

使用curl示例:

curl_setopt($init, CURLOPT_FOLLOWLOCATION, 1);

如果您需要知道重定向的地址

curl_setopt($init, CURLOPT_HEADER, 1);
curl_setopt($init, CURLOPT_FOLLOWLOCATION, 0);
curl_setopt($init, CURLOPT_HTTPHEADER, array('Expect:') );

if ( strstr($content, 'Moved Temporarily') or  
strstr($content, 'Moved Permanently') or strstr($content, '302 Found')   ) :

if ( preg_match('@Location: (.*?)\n@', $content, $red) ) :

print_r($red);

endif; 

Use curl example :

curl_setopt($init, CURLOPT_FOLLOWLOCATION, 1);

if you need know adres of redirec

curl_setopt($init, CURLOPT_HEADER, 1);
curl_setopt($init, CURLOPT_FOLLOWLOCATION, 0);
curl_setopt($init, CURLOPT_HTTPHEADER, array('Expect:') );

if ( strstr($content, 'Moved Temporarily') or  
strstr($content, 'Moved Permanently') or strstr($content, '302 Found')   ) :

if ( preg_match('@Location: (.*?)\n@', $content, $red) ) :

print_r($red);

endif; 
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文