페이지를 강제로 이동할 때에는 응답 헤더의 Location속성을 사용
//========Location 속성을 사용한 페이지 강제 이동======
1
2
3
4
5
6
7
8
9
10
11
|
var http = require('http');//http모듈을 추출
//52273번 포트에 서버를 생성하고 실행
http.createServer(function(request, response){
response.writeHead(302, {'Location':'http://hanb.co.kr'});
response.end();
}).listen(52273,function(){
console.log('Server Running at http://127.0.0.1:52273');
});
| cs |
//===============================================
코드를 실행 하고 127.0.0.1:52273을 접속하면
http://hanb.co.kr'주소로 강제 이동 된다.
Location은 status Code를 302라고 하고 Location : 가고 싶은 웹 페이지 해주면 된다
status Code종류
1XX 처리중
2XX 성공
3XX 리다이렉트
4XX 클라이언트 오류
5XX 서버 오류
status code를 404를 하고 실행을 하면 오류 메시지를 띄운다.
댓글
댓글 쓰기