Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save MahdiKarimipour/891a45c8c00ecda0da1df35909750f4a to your computer and use it in GitHub Desktop.
Save MahdiKarimipour/891a45c8c00ecda0da1df35909750f4a to your computer and use it in GitHub Desktop.
Url Rewrite Add Custom Rule to Collection
public void Configure(IApplicationBuilder app, IHostingEnvironment env)
{
var options = new RewriteOptions();
options.Rules.Add(new CustomRewriteRule())
app.UseRewriter(options);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment