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”); ?>