PHP實現301跳轉,及延時跳轉代碼

來源:互聯網
上載者:User


一般情況下,此類跳轉是302跳轉,只是暫時性跳轉,如果需要進行永久重寫向(SEO上比較有用),可如下實現:

header("HTTP/1.1 301 Moved Permanently");
header("Location: redirect.php");


平時我們使用html做頁面的時候,都會碰到定時重新整理,可以看到如下標籤:

<meta http-equiv="Refresh" content="2;url='refresh.php'">

表示每隔兩秒重新整理一次頁面,實際上是重新導向到頁面。

由此,PHP根據HTTP協議,可以如下實現:

header( "refresh:2;url=refresh.php" );

1.window.location.href方式
    <script language="javascript" type="text/javascript">
           window.location.href="target.aspx";
    </script>

2.window.navigate方式跳轉
   <script language="javascript">
    window.navigate("target.aspx");
</script>

 

3.window.loction.replace方式實現頁面跳轉,注意跟第一種方式的區別
<script language="javascript">
    window.location.replace("target.aspx");
</script>
有3個jsp頁面(1.aspx, 2.aspx, 3.aspx),進系統預設的是1.aspx,當我進入2.aspx的時候, 2.aspx裡面用window.location.replace("3.aspx");

與用window.location.href ("3.aspx");

從使用者介面來看是沒有什麼區別的,但是當3.aspx頁面有一個"返回"按鈕,調用window.history.go(-1); wondow.history.back();方法的時候,一點這個返回按鈕就要返回2.aspx頁面的話,區別就出來了,當用 window.location.replace("3.aspx");連到3.aspx頁面的話,3.aspx頁面中的調用 window.history.go(-1);wondow.history.back();方法是不好用的,會返回到1.aspx。

4.self.location方式實現頁面跳轉,和下面的top.location有小小區別
   <script language="JavaScript">
          self.location='target.aspx';
   </script>

5.top.location
   <script language="javascript">
          top.location='target.aspx';
   </script>

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.