equal
deleted
inserted
replaced
|
1 <!-- Enano CMS - IIS7 Rewrite support (installer's test scenario) --> |
|
2 |
|
3 <configuration> |
|
4 <configSections> |
|
5 <sectionGroup name="rewriteRules"> |
|
6 <section name="rules" overrideModeDefault="Allow" /> |
|
7 </sectionGroup> |
|
8 </configSections> |
|
9 <system.webServer> |
|
10 <rewrite> |
|
11 <rules> |
|
12 <rule name="Installation - test requests from installer UI"> |
|
13 <match url="(.*)" ignoreCase="false" /> |
|
14 <conditions> |
|
15 <add input="{REQUEST_FILENAME}" matchType="IsFile" ignoreCase="false" negate="true" /> |
|
16 <add input="{REQUEST_FILENAME}" matchType="IsDirectory" ignoreCase="false" negate="true" /> |
|
17 </conditions> |
|
18 <action type="Rewrite" url="install.php?do=modrewrite_test&str={R:1}" appendQueryString="false" /> |
|
19 </rule> |
|
20 </rules> |
|
21 </rewrite> |
|
22 </system.webServer> |
|
23 </configuration> |
|
24 |