З
Size: a a a
З
O
З
З
s
O
O
З
O
O
З
S🛸
O
З
S🛸
j
const http = require('http')
const server = http.createServer(function (req, res) {
if (req.url === '/a') {
return res.end('redirect done')
}
res.writeHead(301, { Location: '/a' })
res.end()
})
server.listen(80)
IS
M