PHP
[php]
<?php
header (‘location: http://example.com’);
?>
[/php]
HTML
<meta http-equiv=”refresh” content=”0;url=http://example.com” />
只能透過content=0秒來自動重新整理,轉址到指定的URL
Javascript
[javascript]
<script>document.location.href="http://example.com";</script>
[/javascript]
建議放在開始會比較有效率和意義