Concept Flow - res.redirect for redirections
Client sends request
Server receives request
Server calls res.redirect(url)
Server sends 302 status + Location header
Client receives redirect response
Client automatically requests new URL
New resource served to client
This flow shows how a server tells the browser to go to a new URL using res.redirect, causing the browser to request that new URL.