Answers for "node js redirect to url"

50

express js redirect to url

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

nodejs redirect to url

// In Express
router.get('*',function(req,res){  
    res.redirect('http://exmple.com'+req.url)
})
Posted by: Guest on July-16-2021
0

nodejs redirect to url

response.writeHead(301,
  {Location: 'http://whateverhostthiswillbe:8675/'+newRoom}
);
response.end();
Posted by: Guest on July-16-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language