2016-03-25 01:18:05 -07:00
|
|
|
<configuration>
|
|
|
|
<system.webServer>
|
|
|
|
<rewrite>
|
|
|
|
<rules>
|
|
|
|
<rule name="Imported Rule 1" stopProcessing="true">
|
|
|
|
<match url="^(.*)/$" ignoreCase="false" />
|
|
|
|
<conditions>
|
|
|
|
<add input="{REQUEST_FILENAME}" matchType="IsDirectory" ignoreCase="false" negate="true" />
|
|
|
|
</conditions>
|
|
|
|
<action type="Redirect" redirectType="Permanent" url="/{R:1}" />
|
|
|
|
</rule>
|
|
|
|
<rule name="Imported Rule 2" stopProcessing="true">
|
|
|
|
<match url="^" ignoreCase="false" />
|
|
|
|
<conditions>
|
|
|
|
<add input="{REQUEST_FILENAME}" matchType="IsDirectory" ignoreCase="false" negate="true" />
|
|
|
|
<add input="{REQUEST_FILENAME}" matchType="IsFile" ignoreCase="false" negate="true" />
|
|
|
|
</conditions>
|
|
|
|
<action type="Rewrite" url="index.php" />
|
|
|
|
</rule>
|
|
|
|
</rules>
|
|
|
|
</rewrite>
|
2017-11-06 16:51:46 -08:00
|
|
|
<staticContent>
|
|
|
|
<remove fileExtension=".woff2" />
|
|
|
|
<mimeMap fileExtension=".woff2" mimeType="application/x-font-woff2" />
|
|
|
|
</staticContent>
|
2016-03-25 01:18:05 -07:00
|
|
|
</system.webServer>
|
|
|
|
</configuration>
|