我是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中创建多个服务器实例那么我会更高兴。
答案 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!");
});
参考:
答案 1 :(得分:7)
或者您可以简单地使用npm package subdomain,它会处理您的子域路由。也类似于你可以在subdomain-handler上查看Wilson的项目。