Created
July 2, 2014 12:57
-
-
Save tjrobinson/28d9d854857b83d00cb5 to your computer and use it in GitHub Desktop.
Defining a redirect/rewrite in the Web.config
This file contains hidden or 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"?> | |
<configuration> | |
<system.webServer> | |
<rewrite> | |
<rules> | |
<rule name="Index Request" enabled="true" stopProcessing="true"> | |
<match url="^$"/> | |
<action type="Rewrite" url="App/app.html" logRewrittenUrl="true"/> | |
</rule> | |
</rules> | |
</rewrite> | |
</system.webServer> | |
</configuration> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment