aspnet / BasicMiddleware

[Archived] Basic middleware components for ASP.NET Core. Project moved to https://github.com/aspnet/AspNetCore
Apache License 2.0
169 stars 84 forks source link

Changed url rewrite sample regex to be more specific #132

Closed mikaelm12 closed 7 years ago

mikaelm12 commented 7 years ago

The intended result of the IIS Rewrite sample rule was to redirect requests that had queries of app?id=20 to app?id=10. While this did work, the matching criteria was too general. It would rewrite, for example, example?id=20 to app?id=10

@Tratcher @natemcmaster @muratg