Open vitkarpov opened 10 years ago
In router app.get('/:page', ...), /:page matches on favicon.ico and server tries to get the wrong page.
app.get('/:page', ...)
/:page
favicon.ico
Seems it's common problem, I mean much things could match on this pattern. From another hand, maybe it's users responsibility.
Really. I'll fix this problem.
In router
app.get('/:page', ...)
,/:page
matches onfavicon.ico
and server tries to get the wrong page.