mirror of
https://github.com/silverstripe/silverstripe-installer
synced 2024-10-22 17:05:33 +02:00
16 lines
480 B
Plaintext
16 lines
480 B
Plaintext
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
<configuration>
|
||
|
<system.webServer>
|
||
|
<rewrite>
|
||
|
<rules>
|
||
|
<rule name="SilverStripe Clean URLs" stopProcessing="true">
|
||
|
<match url="^(.*)$" />
|
||
|
<conditions>
|
||
|
<add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" />
|
||
|
</conditions>
|
||
|
<action type="Rewrite" url="sapphire/main.php?url={R:1}" appendQueryString="true" />
|
||
|
</rule>
|
||
|
</rules>
|
||
|
</rewrite>
|
||
|
</system.webServer>
|
||
|
</configuration>
|