在Express中指定路由定义中的子域

时间:2013-09-03 18:01:05

标签: node.js express subdomain

我是ExpressJS和NodeJS的新手,所以我需要指导如何实现这种效果:

app.get('/', 'sub1.domain.com', function(req, res) { 
    res.send("this is sub1 response!"); 
});

app.get('/', 'sub2.domain.com', function(req, res) {
    res.send("this is sub2 response!");
}

因此,当我请求sub1.domain.com第一个处理程序作出反应时,sub2.domain.com我得到第二个处理程序的响应。我已经阅读了有关使用vhost实现此目的的一些问题,但如果我上面描述的内容有效而不是像在vhost中创建多个服务器实例那么我会更高兴。

2 个答案:

答案 0 :(得分:9)

快速简单的解决方案是:

app.get('/', function(req, res) {

  var hostname = req.headers.host.split(":")[0];

  if(hostname == "sub1.domain.com")
    res.send("this is sub1 response!");
  else if(hostname == "sub2.domain.com")
    res.send("this is sub2 response!");

});

参考:

http://code4node.com/snippet/http-proxy-with-custom-routing

答案 1 :(得分:7)

或者您可以简单地使用npm package subdomain,它会处理您的子域路由。也类似于你可以在subdomain-handler上查看Wilson的项目。