헤더 header
<?
echo "페이지이동예제";
header("location: http://taeker.com");
?>

헤더를 사용하면 원하는 곳으로 이동시켜 줄 수 있다
하지만 위의 예제는 출력문이 헤더보다 먼저 왔기에 에러가 난다
즉 헤더보다 어떠한 것을 먼저 출력했다면 에러가 난다
html에서 <body>보다는 <head>가 꼭 먼저 와야 하는 것과 같은 이치이다

이 방법은 함수호출전에 다른 내용을 웹 브라우저에 출력할 수가 없으므로, 조금은 불편한 방법이 될 수도 있다.



로케이션 location
<script language="javascript">
location.href="http://taeker.com";
</script>


다른 프레임에 띄어주고 싶다면
<script language="javascript">
parent.프레임이름.location.href="http://taeker.com";
</script>


새창에 띄어주고 싶다면
<script language="javascript">
window.open("http://taeker.com");
</script>


메타태그 meta
meta태그는 html의 헤더정보를 설정하기 위해 사용되는 태그로 일반적으로 head사이에 사용되지만
페이지의 이동을 위해서 어느곳에나 사용될 수 있다.

3초후 이동합니다
<meta http-equiv="refresh" content="3; url=http://taeker.com">

+ Recent posts