윈도우서버 IIS에서는 페이지 포워딩을 IIS서버 자체에서 지원하지만 그외 지원하지 않는 웹서버에서
페이지 포워딩을 설정하는 방법이다.
간단하게 두가지 방법이 있다 하나는 메타태그를 이용하는 방법 두번째는 프레임셋을 이용하는방법
<html> <head> <title>웹페이지 포워딩</title> <meta http-equiv="Refresh" content="0; URL=http://포워딩할 주소"> </head> <body> </body> </html>
메타태그를 이용했을때은 가장 큰단점은 웹페이지 주소또한 바뀐다는것이다.
위문제를 해결하기위한 방법인 프레임셋을 이용하는방법은 아래에 설명
<html> <head> <title>웹페이지 포워딩</title> </head> <frameset rows="100%" frameborder="0" border="0"> <frame src="http://포워딩할 주소" scrolling="no" marginwidth="0" marginheight="0" noresize> </frameset> </html>