Skip to content

Instantly share code, notes, and snippets.

@maximLyakhov
Created July 24, 2021 11:38
Show Gist options
  • Save maximLyakhov/213512899b10af19c48740c8a56299b6 to your computer and use it in GitHub Desktop.
Save maximLyakhov/213512899b10af19c48740c8a56299b6 to your computer and use it in GitHub Desktop.
angular routing on reg.ru
"assets": [
"src/favicon.ico",
"src/assets",
"src/web.config"
]
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<system.webServer>
<rewrite>
<rules>
<rule name="Angular Routes" 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="./index.html" />
</rule>
</rules>
</rewrite>
<staticContent>
<remove fileExtension=".woff" />
<mimeMap fileExtension=".woff" mimeType="application/font-woff" />
<remove fileExtension=".woff2" />
<mimeMap fileExtension=".woff2" mimeType="font/x-woff" />
<remove fileExtension=".otf" />
<mimeMap fileExtension=".otf" mimeType="font/otf" />
</staticContent>
</system.webServer>
</configuration>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment