Aggiunto file web.config da copiare in IIS...
This commit is contained in:
+24
@@ -0,0 +1,24 @@
|
||||
<?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>
|
||||
Reference in New Issue
Block a user