Skip to content

Instantly share code, notes, and snippets.

@niyiAO
Last active October 6, 2021 17:37
Show Gist options
  • Save niyiAO/187e742fc9fea880f2720464311cf824 to your computer and use it in GitHub Desktop.
Save niyiAO/187e742fc9fea880f2720464311cf824 to your computer and use it in GitHub Desktop.
SPA rewrites
<!-- IIS rewrite -->
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.webServer>
<rewrite>
<rules>
<rule name="SPA rewrite" 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="/" />
</rule>
</rules>
</rewrite>
</system.webServer>
</configuration>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment