search

Home  >  Q&A  >  body text

c++ - 请问如何修复代理访问某些网站时会出现的302重定向死循环

大家好,最近学习c++网络编程,于是使用boost::asio写了一个异步代理程序,目的是做成一个类似Fiddler的东西。
但是我在通过代理访问某些网站时,会出现302重定向死循环。具体表现在返回的302响应里面,location请求头的地址和request url一样。

GET http://www.dmm.com/ HTTP/1.1
User-Agent: Fiddler
Host: www.dmm.com
HTTP/1.1 302 Found
Date: Mon, 19 Dec 2016 17:21:29 GMT
Server: Apache
Pragma: no-cache
Cache-Control: no-cache
Location: http://www.dmm.com
Vary: Accept-Encoding,User-Agent
Content-Length: 0
Connection: close
Content-Type: text/html; charset=UTF-8

请问各位大神,造成这个BUG的原因是什么?我该如何修复?谢谢!

黄舟黄舟2767 days ago584

reply all(1)I'll reply

  • 怪我咯

    怪我咯2017-04-17 15:07:27

    Reason: The request header domain name was not removed when forwarding

    reply
    0
  • Cancelreply