大家好我想在流星服务器上进行重定向。所以我这样做
WebApp.connectHandlers
.use(function (req, res, next) {
console.log(req)
if (req.url === '/') {
// 307 Temporary Redirect
console.log(req)
res.writeHead(307, {
Location: '/login'
})
res.end()
} else {
// Let other handlers match
next()
}
})
但是,它会重定向到http://login
而不是http://localhost:3000/login
我也试过了Location: 'http://localhost:3000/login'
和
res.redirect()
但仍然如此。我在这里做错了什么?