How to handle relative paths in node.js / express?

久未见 提交于 2019-12-01 18:12:36

As Ryan commented the solution is:

app.use('/app', app.router);

If you use e.g. express.static or express.favicon you have to tell app.use the path also:

app.use('/app', express.favicon(__dirname + '/public/images/favicon.ico'));
app.use('/app', express.static(__dirname + '/public'));

Remember to write '/app' before each internal link you set in your html.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!