<?xml version="1.0" encoding="utf-8"?>
<configuration>                                          
  <location path="." allowOverride="false" inheritInChildApplications="false">
    <system.webServer>           
      <rewrite>                  
        <rules>  
          <rule name="help" stopProcessing="true">
            <match url="^help/*" />
            <conditions logicalGrouping="MatchAll">
              <add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" />
            </conditions>  
            <action type="Rewrite" url="help/index.html" />  
          </rule>
          <rule name="root" stopProcessing="true">
            <match url="^$" />
            <action type="Rewrite" url="pages/index.html" />
          </rule>
          <rule name="Handle History Mode and custom 404/500" stopProcessing="true">
            <match url="^([^.]+)$" />
            <conditions logicalGrouping="MatchAll">
              <add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" />
            </conditions>
            <action type="Rewrite" url="pages/index.html" />
          </rule>
        </rules>
      </rewrite>
    </system.webServer>
  </location>
    <system.webServer>
        <httpErrors errorMode="Detailed" />
    </system.webServer>
</configuration>
<!--ProjectGuid: 8FFEEF1C-6233-48FD-8877-5909EEB1AB1A-->