HTML meta標簽
<meta http-equiv='content-type' content="text/html;charset=utf-8"/>
實現頁面刷新
<meta http-equiv='refresh' content='秒數'/>
實現頁面跳轉
<meta http-equiv="refresh" content="秒數;url=目標文檔的URL"/>
PHP header()函數
header("location:目標文檔的URL");
JS location.href
<script type="text/javascript">
location.href='目標文檔的URL';
</script>