Created
March 11, 2017 02:56
-
-
Save AngeloAnolin/6b19d22220b27a545e10f5fa672072fa to your computer and use it in GitHub Desktop.
Web Configuration for Vue Applications Hosted in IIS
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment