Web.config Error:cannot duplicate rule name

Web.config Error:cannot duplicate rule name

我已经使用 iisnode.When 将 node.js 应用程序部署到 iis 我浏览我的应用程序,我看到配置错误如下 无法添加唯一键属性 'name' 设置为 'node'

类型 'rule' 的重复集合条目

我怀疑 web.config 被加载到 iis 两次。我看到 C:/Program Files/iisnode/www 下的文件夹是源文件所在的位置。这被加载了两次 我附上了图片以便清楚地理解

web.config

<configuration>
    <system.web>
        <customErrors mode="Off"/>
        <httpCookies httpOnlyCookies="true" />
    </system.web>
   <system.webServer>
     <handlers>
       <add name="iisnode" path="app.js" verb="*" modules="iisnode" />
     </handlers> 
     <rewrite> 
       <rules>
        <rule name="HTTP to Prod HTTPS redirect" stopProcessing="true">
          <match url="(.*)" />
          <conditions>
            <add input="{HTTPS}" pattern="off" ignoreCase="true" />
          </conditions>
          <action type="Redirect" redirectType="Found" url="https://{HTTP_HOST}/{R:1}" />
        </rule>
        <rule name="infrc">
          <match url="/*" />
          <action type="Rewrite" url="app.js" />
        </rule>
       </rules>
     </rewrite>
   </system.webServer>
 </configuration>

将应用程序文件夹移动到另一个新文件夹或驱动器。

此致, 贾尔帕