Files
Kanboard-Prod/web.config
Trapulo 8ba0ffce3c IIS outofthebox nice url
This enables nice urls on IIS out of the box. No effects on other Web servers.
2016-03-07 12:06:15 +01:00

18 lines
692 B
XML

<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.webServer>
<rewrite>
<rules>
<clear />
<rule name="Kanboard-nice-urls" stopProcessing="true">
<match url="^" ignoreCase="false" />
<conditions logicalGrouping="MatchAll" trackAllCaptures="false">
<add input="{REQUEST_FILENAME}" matchType="IsFile" ignoreCase="false" negate="true" />
</conditions>
<action type="Rewrite" url="index.php" appendQueryString="true" />
</rule>
</rules>
</rewrite>
</system.webServer>
</configuration>