You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
48 lines
2.1 KiB
48 lines
2.1 KiB
<?xml version="1.0" encoding="UTF-8"?>
|
|
<configuration>
|
|
|
|
<system.webServer>
|
|
<directoryBrowse enabled="false" />
|
|
<rewrite>
|
|
<rules>
|
|
<rule name="HTTP api" stopProcessing="true">
|
|
<match url="^(.*/)?api/(.*)$" ignoreCase="true"/>
|
|
<conditions>
|
|
<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="{R:1}api/http.php/{R:2}"/>
|
|
</rule>
|
|
<rule name="Site pages" stopProcessing="true">
|
|
<match url="^(.*/)?pages/(.*)$" ignoreCase="true"/>
|
|
<conditions>
|
|
<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="{R:1}pages/index.php/{R:2}"/>
|
|
</rule>
|
|
<rule name="Staff applications" stopProcessing="true">
|
|
<match url="^(.*/)?scp/apps/(.*)$" ignoreCase="true"/>
|
|
<conditions>
|
|
<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="{R:1}scp/apps/dispatcher.php/{R:2}"/>
|
|
</rule>
|
|
</rules>
|
|
</rewrite>
|
|
<defaultDocument>
|
|
<files>
|
|
<remove value="index.php" />
|
|
<add value="index.php" />
|
|
</files>
|
|
</defaultDocument>
|
|
</system.webServer>
|
|
|
|
</configuration>
|