Posts by Douglas Souza Luz • 11 points
1 post
- 
		1 votes2 answers65 viewsA: Express JS RoutingHello, According to the express documentation you can use the redirect method ex app.use('/route', (req, res) => { if (condicao) { res.redirect('/admin') } })…