install/web.config
author Dan
Sat, 26 Sep 2009 15:26:14 -0400
changeset 1124 1e956881d362
parent 930 648043f3911d
permissions -rw-r--r--
Same issue, was doing an empty() check on $page_urlname in Admin:PageManager and not taking both main pages into account

<!-- Enano CMS - IIS7 Rewrite support (installer's test scenario) -->

<configuration>
  <configSections>
    <sectionGroup name="rewriteRules">
      <section name="rules" overrideModeDefault="Allow" />
    </sectionGroup>
  </configSections>
  <system.webServer>
    <rewrite>
      <rules>
        <rule name="Installation - test requests from installer UI">
          <match url="(.*)" ignoreCase="false" />
          <conditions>
            <add input="{REQUEST_FILENAME}" matchType="IsFile" ignoreCase="false" negate="true" />
            <add input="{REQUEST_FILENAME}" matchType="IsDirectory" ignoreCase="false" negate="true" />
          </conditions>
          <action type="Rewrite" url="install.php?do=modrewrite_test&amp;str={R:1}" appendQueryString="false" />
        </rule>
      </rules>
    </rewrite>
  </system.webServer>
</configuration>