Answers for "redirect in node js"

50

js redirect

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
3

js redirect

window.location.href = "https://your_website.php/page2.php;
// to remove actual address from the history:
window.location.replace = "https://your_website.php/page2.php;
Posted by: Guest on November-02-2020
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