Web部署删除IIS网站自定义配置

时间:2014-04-08 20:17:24

标签: asp.net asp.net-mvc iis iis-7.5 webdeploy

我正在使用Web Deploy(来自VS2013)将ASP.NET MVC站点发布到IIS 7.5。

我通过IIS管理器添加了一些URL重写规则和自定义HTTP响应头。​​

问题是每次部署新版本的网站时,都会删除此额外配置。

这是预期的行为还是有问题?如何在每次部署时保留这些自定义设置?

更新

所以我理解我需要将这些更改放在web.config中。我正试图将它们放在Web.Release.config中,但它没有被添加到已部署的web.config中。我想我错过了一些XDT:Transform规则。

这是我在Web.Release.config中得到的(是的,发布配置文件正在使用此版本配置)。

<configuration>
    <!-- some other stuff -->
    <system.webServer>
        <rewrite>
          <rules>
            <rule name="Redirect to www" patternSyntax="Wildcard" stopProcessing="true">
              <match url="*" />
              <conditions>
                <add input="{HTTP_HOST}" pattern="mydomain.com" />
              </conditions>
              <action type="Redirect" url="http://www.mydomain.com/{R:0}" />
            </rule>
          </rules>
        </rewrite>
      </system.webServer>
</configuration>

2 个答案:

答案 0 :(得分:2)

将web.config的构建操作转为无。这将阻止每次发布时都部署文件。

修改

要从web.release.config将整个部分插入到web.config中,您需要添加xdt:Transform =“Insert”,如下所示:

<system.webServer xdt:Transform="Insert">
        <rewrite>
          <rules>
            <rule name="Redirect to www" patternSyntax="Wildcard" stopProcessing="true">
              <match url="*" />
              <conditions>
                <add input="{HTTP_HOST}" pattern="mydomain.com" />
              </conditions>
              <action type="Redirect" url="http://www.mydomain.com/{R:0}" />
            </rule>
          </rules>
        </rewrite>
      </system.webServer>

答案 1 :(得分:0)

好的,我知道我需要使用XDT:Transform在web.config中添加此自定义配置。

我将此添加到Web.Release.config并且有效:

<system.webServer>
    <rewrite xdt:Transform="Insert">
      <rules>
        <rule name="Redirect to www" patternSyntax="Wildcard" stopProcessing="true">
          <match url="*" />
          <conditions>
            <add input="{HTTP_HOST}" pattern="mydomain.com" />
          </conditions>
          <action type="Redirect" url="http://www.mydomain.com/{R:0}" />
        </rule>
      </rules>
    </rewrite>
 </system.webServer>