使用IIS Express自定义端口和域名

时间:2011-07-19 20:18:43

标签: iis dns

我有两个使用asp.net MVC3构建的Web应用程序。我想在本地使用自定义域运行它们,并且网址中没有任何端口号。无需担心远程访问等。这仅适用于本地开发环境

例如:

HTP://app1.cc.com-->应用1

HTP://app2.cc.com-->应用2

我需要像htp这样的东西://app1.cc.com/questions/4709014/using-custom-domains-with-iis-express

目前我的网址类似于http://localhost:34752/questions/4709014/using-custom-domains-with-iis-express

我按照这个问题中的步骤进行了操作:

Using Custom Domains With IIS Express

但这是使用保留端口80,这很好,但如何与两个应用程序共享此端口

1 个答案:

答案 0 :(得分:3)

只需在applicationhost.config

中添加绑定即可

像这样的东西

<site name="site1" id="1" serverAutoStart="true">
<bindings>
     <binding protocol="http" bindingInformation="*:80:app1.cc.com" />
</bindings>
</site>

<site name="site2" id="2" serverAutoStart="true">
<bindings>
     <binding protocol="http" bindingInformation="*:80:app2.cc.com" />
</bindings>
</site>