26 lines
No EOL
911 B
XML
26 lines
No EOL
911 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<configuration>
|
|
<system.webServer>
|
|
<rewrite>
|
|
<rules>
|
|
<!-- Remove slash '/' from the en of the url -->
|
|
<rule name="RewriteRequestsToPublic">
|
|
<match url="^(.*)$" />
|
|
<conditions logicalGrouping="MatchAll" trackAllCaptures="false">
|
|
</conditions>
|
|
<action type="Rewrite" url="/{R:0}" />
|
|
</rule>
|
|
|
|
<!-- When requested file or folder don't exists, will request again through index.php -->
|
|
<rule name="Imported Rule 1" stopProcessing="true">
|
|
<match url="^(.*)$" ignoreCase="true" />
|
|
<conditions logicalGrouping="MatchAll">
|
|
<add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" />
|
|
<add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" />
|
|
</conditions>
|
|
<action type="Rewrite" url="/index.php/{R:1}" appendQueryString="true" />
|
|
</rule>
|
|
</rules>
|
|
</rewrite>
|
|
</system.webServer>
|
|
</configuration> |