我們收集了來自網路上常用的轉頁語法,以供大家使用:
1. html 的轉頁語法(最常用):
請直接將下列語法,修改完後,貼到空白的 index.html裡:
<meta http-equiv="refresh" content="填入秒數; url=填入網址“>
範例:
<meta http-equiv="refresh" content="0;url=http://google.com">
2. JavaScript :
<script language="JavaScript"> <!-- window.location.href = "填入網址"; //--> </script>
3. php :
請將語法擺在空白的 index.php檔裡
<?php header("Location: 填入網址"); ?>
其中php還有301語法(這是對搜索引擎友善)
<?php header("HTTP/1.1 301 Moved Permanently"); header("Location: 填入網址"); ?>
4. apache rewrite ( .htaccess ) :