使用IIS Express調試,只能經過 http://localhost:端口 進行訪問web
客戶端的設備如何才能經過 http://ip地址:端口 訪問後臺程序進行調試呢?服務器
第一步,打開項目屬性,web服務器是默認的IIS Express.app
第二步,找到項目站點的配置文件 applicationhost.config,通常默認的位置在: C:\Users\userName\Documents\IISExpress\configspa
個人是在 D:\Documents\IISExpress\config調試
也能夠以下方法找到:code
啓動web調試後,電腦右下角有個IIS Express圖標,點擊顯示全部應用程序orm
就能夠看到配置的所在位置。blog
第三步,打開applicationhost.config文件,找到項目所在的節點,個人項目名稱是MyApp。ip
添加一行:<binding protocol="http" bindingInformation="*:11946:192.168.137.210" /> ,設置自定義的IP和端口。web服務器
<site name="MyApp" id="4"> <application path="/" applicationPool="Clr4IntegratedAppPool"> <virtualDirectory path="/" physicalPath="D:\CSharpWorkSpace\MyApp\MyApp" /> </application> <bindings> <binding protocol="http" bindingInformation="*:11946:localhost" /> <binding protocol="http" bindingInformation="*:11946:192.168.137.210" /> </bindings> </site>