[IIS] URL 고정/유동 포워딩과 Redirect

Posted by

1. 고정포워딩

<!DOCTYPE HTML PUBLIC “-//W3C//DTD HTML 4.0 Frameset//EN”>   
<HTML>   
        <HEAD>   
                <TITLE>익스플로러의 타이틀</TITLE>   
                        <META http-equiv=Content-Type content=”text/html; charset=euc-kr”>   
                </HEAD>   
        <FRAMESET border=0 frameSpacing=0 rows=100%,* frameBorder=0>   
        <FRAME name=mainpage src=”포워딩될주소”>   
        </FRAMESET>   
</HTML>



2. 유동포워딩

<META http-equiv=”Refresh” content=”1; URL=http://포워딩될주소”>  


Redirect
<VirtualHost 211.63.250.84>
ServerAdmin [email protected]
Redirect / https://www.google.com/a/e-clio.co.kr
ServerName mail.comansun.com
ErrorLog logs/comansun.com-error_log
CustomLog logs/comansun.com-access_log common
</VirtualHost>


[출처] http://comansun.tistory.com/32

Leave a Reply

이메일 주소는 공개되지 않습니다. 필수 필드는 *로 표시됩니다