DWilson
11/09/2023, 8:52 AMSebastiaan Naafs - van Dijk
11/09/2023, 8:56 AMSebastiaan Naafs - van Dijk
11/09/2023, 8:57 AM<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.web>
<httpRuntime enableVersionHeader="false" requestPathInvalidCharacters="<,>,*,%,&,\" />
<pages validateRequest="false" />
</system.web>
<system.webServer>
<rewrite>
<rules>
<rule name="RewriteUserFriendlyURL1" enabled="true" patternSyntax="ECMAScript" stopProcessing="true">
<match url="^(.*)$" />
<conditions>
<add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" />
<add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" />
</conditions>
<action type="Rewrite" url="/index.cfm/{R:1}" />
</rule>
</rules>
</rewrite>
<defaultDocument>
<files>
<clear />
<add value="index.cfm" />
</files>
</defaultDocument>
</system.webServer>
</configuration>
DWilson
11/09/2023, 12:53 PM