nodejs리다이렉션
Node.js 리다이렉션

 

 

Node.js 리다이렉션

 

response.writeHead(302 , {
  'Location' : '/view/index.html' //리다이렉션 경로
});
response.end();