<?
echo "<meta http-equiv='refresh' content='0; url=http://도메인'>";
?>
2. 자바스크립트를 이용한 방법
<?
echo "<script>
document.location.href='도메인';
</script>";
?>
또는
<?
echo "<script>
window.location.replace('도메인');
</script>";
?>
3. 헤더를 이용한 방법
<?
header("Location: 도메인");
?>