Вы не можете выбрать более 25 тем
Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
|
- <?xml version="1.0" encoding="UTF-8"?>
- <configuration>
- <system.webServer>
- <defaultDocument enabled="true">
- <files>
- <clear />
- <add value="Default.asp" />
- <add value="index.asp" />
- <add value="index.html" />
- </files>
- </defaultDocument>
-
- <directoryBrowse enabled="false" />
-
- <httpErrors errorMode="DetailedLocalOnly" />
-
- <rewrite>
- <rules>
- <rule name="Route All Requests To Default.asp" stopProcessing="true">
- <match url=".*" />
- <conditions logicalGrouping="MatchAll">
- <add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" />
- <add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" />
- <add input="{URL}" pattern="^/Default\.asp$" negate="true" />
- </conditions>
- <action type="Rewrite" url="Default.asp" appendQueryString="true" />
- </rule>
- </rules>
- </rewrite>
-
- <staticContent>
- <clientCache cacheControlMode="UseMaxAge" cacheControlMaxAge="7.00:00:00" />
- </staticContent>
- </system.webServer>
- </configuration>
|