Skip to content

Instantly share code, notes, and snippets.

@DWboutin
Last active December 21, 2015 00:58
Show Gist options
  • Save DWboutin/6223745 to your computer and use it in GitHub Desktop.
Save DWboutin/6223745 to your computer and use it in GitHub Desktop.
web.config base for Azure's "htaccess"
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.webServer>
<rewrite>
<rules>
<rule name="Imported Rule 1" stopProcessing="true">
<match url="^(*)$" ignoreCase="false" />
<action type="Rewrite" url="myUrl.html" appendQueryString="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