HTTP/1.1 505 HTTP Version Not Supported

前端 未结 2 1838
离开以前
离开以前 2021-02-20 17:37

I\'m running a PHP script to grab a web page. It worked fine with many sites, but with one site it fails, returning an error saying \"HTTP/1.1 505 HTTP Version Not Supported\".<

2条回答
  •  挽巷
    挽巷 (楼主)
    2021-02-20 18:10

    Replace the space in the URL with its percent-encoding:

        $page = file_get_contents("http://www.lovelybooks.de/stoebern/empfehlung/romantic%20fantasy/?seite=$i");
    

提交回复
热议问题