HOME

[prisna-google-website-translator]

MY.BLOGTOP10.COM

이 블로그는 QHost365.com 을 이용합니다.
도메인/웹호스팅 등록은 QHost365.com

HTML 포워딩(redirect) 방법

워드프레스

HTML에서 특정 URL로 포워딩하는 방법 3가지

1. meta tag 이용

<meta http-equiv=”Refresh” content=”0; URL=https://URL”>

2. Java script 이용

<script>document.location=”https://URL”;</script>

or

<script language=”javascript”>
location.replace(“https://URL”);
</script>

3. PHP 이용

<? header(“Location:https://URL”); ?>