Skip to content

Instantly share code, notes, and snippets.

@MahdiKarimipour
Created June 24, 2021 23:42
Show Gist options
  • Save MahdiKarimipour/cc0b0a5f363daf0986818d55a1d3aaf9 to your computer and use it in GitHub Desktop.
Save MahdiKarimipour/cc0b0a5f363daf0986818d55a1d3aaf9 to your computer and use it in GitHub Desktop.
Url Rewrite with Regex
var rewrite = new RewriteOptions()
.AddRewrite(@"^Home/Resource?Id=(\d+)", "Home/$1", true);
app.UseRewriter(rewrite);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment