[클라이언트]/[웹]
[Node.js] Redirection
Hevton
2020. 10. 3. 16:43
반응형
response.writeHead(302, {
'Location': '/view/index.html' // This is your url which you want
});
response.end(); //'현재페이지는 아무것도 출력하지않음' 의미
반응형