Answers for "nodejs redirect to url"

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