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

假装没事ソ 提交于 2019-12-04 03:22:52

问题


I've written a website in node.js and express. Now I configured lighttpd to use the node.js server with an subdirectory:

$HTTP["url"] =~ "^/app/" {
  proxy.server  = ( "" => ( (
                              "host" => "127.0.0.1",
                              "port" => 3000
                            ) )
                  )
}

When I open http://localhost/app/ I get error 404 because I wrote something like this:

app.get('/', function (req, res){
  res.render('index');
});

Is there a better way as modifying these lines like:

var relPath = '/app';

app.get(relPath + '/', function (req, res){
  res.render('index');
});

?


回答1:


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.



来源:https://stackoverflow.com/questions/11379482/how-to-handle-relative-paths-in-node-js-express

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