Answers for "nodejs express redirect"

50

express js redirect to url

window.location.href = "http://mywebsite.com/home.html";
Posted by: Guest on July-18-2019
1

express request path

// GET 'http://www.example.com/admin/new?a=b'
app.get('/admin', (req, res, next) => {
  req.originalUrl; // '/admin/new?a=b' (full path with query string)
  req.baseUrl; // '/admin'
  req.path; // '/new'
  req.baseUrl + req.path; // '/admin/new' (full path without query string)
});
Posted by: Guest on August-12-2020
1

express redirect to url

app.get('/', (req, res) => {
  res.redirect('/about');
})
Posted by: Guest on October-27-2020
3

express redirect

app.get('/', (req, res) => {
  res.redirect('/foo/bar');
});
Posted by: Guest on July-18-2020
1

express redirect

res.redirect('https://google.com')
Posted by: Guest on March-17-2021
5

express redirect

res.redirect('/foo/bar')
res.redirect('http://example.com')
res.redirect(301, 'http://example.com')
res.redirect('../login')
Posted by: Guest on December-13-2019

Code answers related to "Javascript"

Browse Popular Code Answers by Language