If I have two routes:
app.get('/example/:param');
app.get('/example/url');
Is there a way to stop a request to https://domainname.com:3000/example/url
being treated as https://domainname.com:3000/example
with req.params.param = "url"
Or should I just change the route names?!