Skip to content

Instantly share code, notes, and snippets.

@Orbis25
Last active November 20, 2019 02:23
Show Gist options
  • Save Orbis25/df1ded3cf77199a7f2e3226b61303a52 to your computer and use it in GitHub Desktop.
Save Orbis25/df1ded3cf77199a7f2e3226b61303a52 to your computer and use it in GitHub Desktop.
web.config this code is necesary when you deploy app in reactjs in (IIS) , Check if working for (Vuejs and Angularjs) this file is necesary inclounding in public folder
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<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>
<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