我正在尝试将站点绑定列表添加到 applicationHost.config 文件,而不是通过 IIS 7.5 手动添加每个站点绑定。
<site name="new_site" id="6">
<application path="/" applicationPool="new_site">
<virtualDirectory path="/" physicalPath="D:\HTTP\wwwroot\newsite" />
</application>
<bindings>
<binding protocol="http" bindingInformation="*:80:example.com" />
<binding protocol="http" bindingInformation="*:80:www.example.com" />
<binding protocol="http" bindingInformation="*:80:example2.com" />
<binding protocol="http" bindingInformation="*:80:www.example2.com" />
</bindings>
</site>
这样做的原因是我有 2000 个绑定要添加,如果我可以直接编辑配置文件,这将容易得多。
但是,在编辑配置文件时,绑定不起作用或显示在 IIS 中。
这实际上是可能的还是我错过了什么?