如何处理 nodejs 的子域请求?
例如以下代码在控制台中对http://localhost:9876/[anything]上的任何请求进行回显测试:
var http = require('http');
http.createServer(function(req, res){
console.log("test");
}).listen(9876);
现在我想回答http://[anything].localhost:9876/[anything]上的任何请求, 它可以通过 apache 中的 htaccess来完成,NodeJS 中有什么替代方法?