How do I get Fiddler to stop ignoring traffic to localhost?

前端 未结 14 1401
故里飘歌
故里飘歌 2020-11-27 12:13

When using Fiddler to monitor HTTP Requests & Responses in Internet Explorer it ignores all traffic directed to http://localhost.

14条回答
  •  野趣味
    野趣味 (楼主)
    2020-11-27 13:11

    To get Fiddler to capture traffic when you are debugging on local host, after you hit F5 to begin degugging change the address so that localhost has a "." after it.

    For instance, you start debugging and the you have the following URL in the Address bar:

    http://localhost:49573/Default.aspx

    Change it to:

    http://localhost.:49573/Default.aspx

    Hit enter and Fidder will start picking up your traffic.

提交回复
热议问题