网站域名更换,怎么用Node写重定向服务,需要考虑哪些问题,有没有重定向的库可以解决这个问题?
10 回复
@alsotang 我这样写的:
app.use(function (req, res, next) {
var hostname=req.host;
if(hostname=="localhost"){
res.statusCode = 301;
res.redirect("http://192.168.1.160:18080" +req.url);
}
else {
next();
}
});
为什么chrome调试是302