Skip to content

Instantly share code, notes, and snippets.

@chgc
Created March 14, 2017 02:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save chgc/80f0f5880c836648b047fcd437ed2706 to your computer and use it in GitHub Desktop.
Save chgc/80f0f5880c836648b047fcd437ed2706 to your computer and use it in GitHub Desktop.
SPA rewrite rule - web.config version
...
<rewrite>
<rules>
<rule name="SPA" stopProcessing="true">
<match url=".*" />
<action type="Rewrite" url="/" />
<conditions>
<add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" />
</conditions>
</rule>
</rules>
</rewrite>
...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment