| 12345678910111213141516171819202122232425262728293031323334353637 |
- <?xml version="1.0" encoding="UTF-8"?>
- <configuration>
- <system.webServer>
- <rewrite>
- <rules>
- <rule name="OrgPage" stopProcessing="true">
- <match url="^(.*)$" />
- <conditions logicalGrouping="MatchAll">
- <add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" />
- <add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" />
- </conditions>
- <action type="Rewrite" url="index.php/{R:1}" appendQueryString="true" />
- </rule>
- </rules>
- </rewrite>
- <directoryBrowse enabled="false" />
- <security>
- <requestFiltering allowDoubleEscaping="True" />
- </security>
- <defaultDocument>
- <files>
- <clear />
- <add value="index.php" />
- <add value="Default.htm" />
- <add value="Default.asp" />
- <add value="index.htm" />
- <add value="index.html" />
- <add value="iisstart.htm" />
- </files>
- </defaultDocument>
- </system.webServer>
- <system.web>
- <authentication mode="Windows" />
- <identity impersonate="false" />
- </system.web>
-
- </configuration>
|