gpt4 book ai didi

php - curl 同一服务器时找不到 404

转载 作者:可可西里 更新时间:2023-11-01 01:03:00 25 4
gpt4 key购买 nike

我正在研究 HTML2PS,它在旧服务器上运行良好,移至新服务器后停止工作。

我已经解决了无法从服务器找到我通过 CURL 访问的临时文件的问题,但可以从其他位置(例如我的本地计算机)获取该文件

此 URL 在不久的将来可能无法使用,因为我可能会删除此链接。

http://www.lapchi.com/new/temp_curl.php5

链接代码如下

<form method="post">


<input type="text" name="url" value="http://www.lapchi.com/new/uploads/temp/html_pdf/503_S_b7ku0sbn1i8g8ll06ra1pth332.html" size="90" />
<input type="submit" value="go">
</form>
<?php


set_time_limit(8888);

if($_POST){
$url = $_POST['url'];
$curl = curl_init();
curl_setopt($curl, CURLOPT_URL,$url ); // this file is physically exist on server
curl_setopt($curl, CURLOPT_USERAGENT, "Mozilla/5.0 (Windows; U; Windows NT 5.1; rv:1.7) Gecko/20040803 Firefox/0.9.3");
curl_setopt($curl, CURLOPT_HEADER, 1);
curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1);

$response = curl_exec($curl);
if ($response === FALSE) {
error_log(sprintf('Cannot open %s, CURL error is: %s',
$url,
curl_error($curl)));
curl_close($curl);
return null;
}

curl_close($curl);
preg_match('/^(.*?)\r\n\r\n(.*)$/s', $response, $matches);

$headers = array_slice(explode("\r\n", $matches[1]),1);
$content = $matches[2];


echo $content;

}

我不确定,为什么不能通过 CURL 找到同一服务器上的同一个文件,但其他人可以 CURL 这个 url 而这个页面可以 curl 其他 url

最佳答案

副本:

Can I do a CURL request to the same server?

对应用程序服务器上已经存在的内容进行 cURL 确实没有意义。

关于php - curl 同一服务器时找不到 404,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18355305/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com