5

我一般是 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 中创建多个服务器实例,我会更高兴。

4

2 回答 2

10

一个快速简单的解决方案是:

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

于 2013-09-03T19:09:35.850 回答
8

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

于 2013-09-03T22:10:56.390 回答