Answers for "node js express redirect with header"

3

express redirect to url

app.get("/where", (req, res) => {
   res.status(301).redirect("https://www.google.com")
}) //You need to include the status (301)
Posted by: Guest on October-19-2021
63

express js redirect to url

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

Browse Popular Code Answers by Language