본문 바로가기
[웹]

[Node.js] Redirection

by Hevton 2020. 10. 3.
반응형
response.writeHead(302, {
  'Location': '/view/index.html' // This is your url which you want
});
response.end(); //'현재페이지는 아무것도 출력하지않음' 의미

 

반응형