As far as I can remember, pretty much all works out of the box once you have translated the .htaccess file to a corresponding web.config file that looks like this:
Code: Select all
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.webServer>
<rewrite>
<rules>
<rule name="Rule1" stopProcessing="true">
<match url="^bl-content/x(.*)\.txt$" ignoreCase="false" />
<action type="Redirect" url="{R:0}" redirectType="Temporary" />
</rule>
<rule name="Rule2" stopProcessing="true">
<match url="^(.*)" ignoreCase="false" />
<conditions logicalGrouping="MatchAll">
<add input="{REQUEST_FILENAME}" matchType="IsFile" ignoreCase="false" negate="true" />
</conditions>
<action type="Rewrite" url="index.php" />
</rule>
</rules>
</rewrite>
</system.webServer>
</configuration>