req.originalUrl

req.originalUrl

req.url is not a native Express property, it is inherited from Node’s http module.

This property is much like req.url; however, it retains the original request URL, allowing you to rewrite req.url freely for internal routing purposes. For example, the “mounting” feature of app.use() will rewrite req.url to strip the mount point.

1
2
3
// GET /search?q=something
req.originalUrl
// => "/search?q=something"
doc_Express
2025-01-10 15:47:30
Comments
Leave a Comment

Please login to continue.