We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Enabling in IIS is simple via web.config
<system.webServer> <rewrite> <rules> <!--Redirect selected traffic to index --> <rule name="Index Rule" stopProcessing="true"> <match url=".*" /> <conditions logicalGrouping="MatchAll"> <add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" /> <add input="{REQUEST_URI}" matchType="Pattern" pattern="^/api/" negate="true" /> </conditions> <action type="Rewrite" url="/index.html" /> </rule> </rules> </rewrite> </system.webServer>
Looking for middleware example to support StaticFile Server to host angular for example, in Kestrel or web self host
The text was updated successfully, but these errors were encountered:
Start here: https://github.com/aspnet/StaticFiles/blob/dev/samples/StaticFileSample/Startup.cs#L21
Sorry, something went wrong.
Fix several issues
22a3250
Fix #502 Fix #492 Fix #491 Fix #486 Improves #489
Add placeholder package descriptions to fix NuGetPackageVerifier erro…
6c8af17
…rs (#490) Merged to unblock CI. cref #491 to update the packages with tags and real package descriptions
No branches or pull requests
Enabling in IIS is simple via web.config
Looking for middleware example to support StaticFile Server to host angular for example, in Kestrel or web self host
The text was updated successfully, but these errors were encountered: