我正在嘗試將一個站點綁定列表添加到applicationHost.config文件,而不是通過IIS 7.5手動添加每個站點綁定。在applicationHost.config中更新站點綁定
<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中顯示。
這實際上是可能的還是我錯過了什麼?