doupengxie4195 2013-06-20 01:55
浏览 25
已采纳

Curl PHP解析哈希标签会导致400个错误请求

I'm trying to crawl a url that has has tag in it but it returns 400 bad request error.

Is there a way to parse this correctly using CURL in PHP?

  • 写回答

1条回答 默认 最新

  • doudi1978 2013-06-20 01:59
    关注

    The anchor fragment (# and everything after) is not part of the request URL. It should never be sent to the server. cURL has nothing to do with this. Only the browser cares about this part.

    If this page is doing some AJAX or otherwise dynamically loading content based on the anchor fragment, then you will need a browser to run that page and execute the JavaScript. You can use PhantomJS for this task.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?