HTML & Publishing2019. 1. 26. 16:40

고정 포워딩

- 주소창의 주소가 변경되지 않고 입력한 도메인명 그대로 유지 (도메인명이 주소창에 유지)
- frameset을 이용하는 방식

- 고정 포워딩의 경우 연결되는 사이트의 '타이틀 제목' 및 '검색 키워드'를 설정 가능
- 해당 도메인으로 접속시의 접속 통계/검색 키워드 확인 가능

- 연결되는 사이트의 제작환경에 따라, 홈페이지 내 로그인 기능이 안 될 수도 있음


<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN">
<html lang="ko">
<head>
<title>Your Website Title</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=Edge">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
<meta name="description" content="Your Website Description">
<meta name="keywords" content="Your Website Keywords">
    <script>
        document.title = "Your Site Title" ;
    </script>
</head>
<frameset rows="100%,*"  border="0" frameborder="0" framespacing="0">
    <frame name="noframe" src="forwarding URL"></frame>
    <noframes>
        <body>
            <p>This page uses frames. The current browser you are using does not support frames.</p>
        </body>
    </noframes>
</frameset>
</html>



유동 포워딩

- 주소창의 주소가 포워딩 주소(연결을 설정한 사이트 주소)로 변경, meta 태그에 의해 단순히 리다이렉팅됨

- redirection 방식

- 홈페이지 내 회원가입이나 로그인 기능이 있으면 유동 포워딩을 사용하는 것이 좋음


<meta http-equiv="Refresh" content="1; URL=http://forwarding URL">

'HTML & Publishing' 카테고리의 다른 글

Vimeo/Browser - autoplay, mute 관련  (0) 2018.11.28
디바이스별 해상도  (0) 2018.11.28
Vimeo/YouTube Parameters  (0) 2018.08.30
option 링크 걸기  (0) 2018.08.24
구글 맵 예제  (0) 2018.07.22
Posted by cpu21