How to configure Fiddler to listen to localhost?

后端 未结 16 2223
长情又很酷
长情又很酷 2020-12-02 09:51

I want to monitor HTTP traffic between a process on my local machine and another (server) process, also running on my local machine.

How can I configure Fiddler to

16条回答
  •  一向
    一向 (楼主)
    2020-12-02 10:03

    Add a dot . after the localhost.

    For example if you had http://localhost:24448/HomePage.aspx

    Change it to http://localhost.:24448/HomePage.aspx

    Internet Explorer is bypassing the proxy server for "localhost". With the dot, the "localhost" check in the domain name fails.

提交回复
热议问题