2018-08-06 12:30:51 +00: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>
|
|
|
|
<!--# Rewrite rule for the delivery of static resources-->
|
|
|
|
<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>
|
2018-12-17 16:10:17 +00:00
|
|
|
<rule name="Rule 3" stopProcessing="true">
|
2018-08-06 12:30:51 +00:00
|
|
|
<match url="^(CHANGELOG\.md|composer\.(json|lock))" ignoreCase="false" />
|
|
|
|
<action type="Rewrite" url="index.php?404" appendQueryString="false" />
|
|
|
|
</rule>
|
|
|
|
</rules>
|
|
|
|
</rewrite>
|
|
|
|
<defaultDocument>
|
|
|
|
<files>
|
|
|
|
<remove value="index.php" />
|
|
|
|
<add value="index.php" />
|
|
|
|
</files>
|
|
|
|
</defaultDocument>
|
|
|
|
</system.webServer>
|
|
|
|
</configuration>
|