24 lines
1.0 KiB
XML
24 lines
1.0 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<configuration>
|
|
<system.webServer>
|
|
<rewrite>
|
|
<rules>
|
|
<rule name="Handle History Mode and custom 404/500" stopProcessing="true">
|
|
<match url="(.*)" />
|
|
<conditions logicalGrouping="MatchAll">
|
|
<add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" />
|
|
<add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" />
|
|
</conditions>
|
|
<action type="Rewrite" url="index.html" />
|
|
</rule>
|
|
</rules>
|
|
</rewrite>
|
|
<httpErrors>
|
|
<remove statusCode="404" subStatusCode="-1" />
|
|
<remove statusCode="500" subStatusCode="-1" />
|
|
<error statusCode="404" path="/survey/notfound" responseMode="ExecuteURL" />
|
|
<error statusCode="500" path="/survey/error" responseMode="ExecuteURL" />
|
|
</httpErrors>
|
|
<modules runAllManagedModulesForAllRequests="true"/>
|
|
</system.webServer>
|
|
</configuration> |