Skip to content

Instantly share code, notes, and snippets.

View whiskyoo's full-sized avatar
🎯
Focusing

zhangxianggui whiskyoo

🎯
Focusing
View GitHub Profile
@whiskyoo
whiskyoo / web.config
Created February 7, 2018 09:56 — forked from maxan/web.config
IIS Config to React Router App
<system.webServer>
<rewrite>
<rules>
<rule name="React Routes" stopProcessing="true">
<match url=".*" />
<conditions logicalGrouping="MatchAll">
<add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" />
<add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" />
<add input="{REQUEST_URI}" pattern="^/(api)" negate="true" />
</conditions>