Very similar to the unmaintained project express-uncapitalize, this middleware redirects any requests which contain uppercase chars to their lowercase forms. With two main changes from the original:
- Works with all utf-8 strings in paths
- Keeps query parameters intact
npm install express-lowercase-paths
var lowercasePaths = require("express-lowercase-paths")
app.use(lowercasePaths())