redirect url in express code example
Example 1: javascript redirect
window.location.href = "http://mywebsite.com/home.html";
Example 2: express js redirect to url
// GET method route
app.get('/', function (req, res) {
res.send('GET request to the homepage')
})
// POST method route
app.post('/', function (req, res) {
res.send('POST request to the homepage')
})
Example 3: express js redirect to url
var express = require('express')
var app = express()
// respond with "hello world" when a GET request is made to the homepage
app.get('/', function (req, res) {
res.send('hello world')
})