Meteor Server Side Redirect Webapp

时间:2017-05-10 12:22:24

标签: javascript redirect meteor routing

大家好我想在流星服务器上进行重定向。所以我这样做

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()

但仍然如此。我在这里做错了什么?

0 个答案:

没有答案