<?xml version="1.0" encoding="UTF-8"?>
<configuration> <system.webServer> <rewrite> <rules> <!--<rule name="Imported Rule 1"> <match url="(.*)" ignoreCase="false" /> <conditions logicalGrouping="MatchAll"> <add input="{HTTPS}" pattern="off" ignoreCase="false" /> </conditions> <action type="Redirect" url="https://{HTTP_HOST}{URL}" redirectType="Found" /> </rule>--> <!--<rule name="rule 8u" stopProcessing="true"> <match url="(.*)imageloader/load/(.*)/(.*)_([0-9]*)_([0-9]*).(jpg|jpeg|gif|png)$" /> <action type="Rewrite" url="/application/third_party/image_resize/image.php?image=uploads/images/{R:2}/{R:3}.{R:6}&width={R:4}&height={R:5}" /> </rule>--> <rule name="Imported Rule 1-1" stopProcessing="true"> <match url="^(.*)$" ignoreCase="false" /> <conditions logicalGrouping="MatchAll"> <add input="{URL}" pattern="^system.*" ignoreCase="false" /> </conditions> <action type="Rewrite" url="index.php?/{R:1}" appendQueryString="false" /> </rule> <rule name="Imported Rule 2" stopProcessing="true"> <match url="^(.*)$" ignoreCase="false" /> <conditions logicalGrouping="MatchAll"> <add input="{URL}" pattern="^application.*" ignoreCase="false" /> </conditions> <action type="Rewrite" url="/index.php?/{R:1}" appendQueryString="false" /> </rule> <rule name="Imported Rule 3" stopProcessing="true"> <match url="^(.*)$" ignoreCase="false" /> <conditions logicalGrouping="MatchAll"> <add input="{REQUEST_FILENAME}" matchType="IsFile" ignoreCase="false" negate="true" /> <add input="{REQUEST_FILENAME}" matchType="IsDirectory" ignoreCase="false" negate="true" /> </conditions> <action type="Rewrite" url="index.php/{R:1}" appendQueryString="true" /> </rule> </rules> </rewrite> </system.webServer> </configuration>