这是应用程序的根目录 (http://site.com),在请求域时运行。如果我只想添加一个文件说 robots.txt (http://site.com/robots.txt) 以使用此 http 服务器请求,我该怎么做?它会从 robots.txt 的内容中提取并回显出来。
var http = require('http');
http.createServer(function (req, res) {
res.writeHead(200, {'Content-Type': 'text/html'});
res.write('homepage');
res.end('');
}).listen(process.env.VMC_APP_PORT || 1337, null);
谢谢