asp,asp.net,php,jsp下的301轉向代碼

來源:互聯網
上載者:User

使用.htaccess檔案來進行301重新導向,請見我的另外一篇文章《301重新導向,網域名稱更換後跳轉到新網域名稱》

如果空間不支援.htaccess檔案,那麼我們還可以通過php/asp代碼來進行301重新導向。
為了將搜尋引擎的記錄更新到現在的網域名稱上面,做了幾個301重新導向的東東,給大家分享一下.
asp 301轉向代碼
在 index.asp 或 default.asp 的最頂部加入以下幾行: 複製代碼 代碼如下:<%
Response.Status="301 Moved Permanently"
Response.AddHeader "Location","http://www.jb51.net/"
Response.End
%>

php 301轉向代碼
在 index.php 的最頂部加入以下幾行: 複製代碼 代碼如下:<?php
header("HTTP/1.1 301 Moved Permanently");
header("Location: http://www.jb51.net/");
exit();
?>

asp.net 301轉向代碼 複製代碼 代碼如下:<%@ Page Language="C#" %>
<script runat="server">
protected void Page_Load(object sender, EventArgs e)
{
HttpContext.Current.Response.StatusCode = 301;
HttpContext.Current.Response.Status = "301 Moved Permanently";
HttpContext.Current.Response.AddHeader("Location", "http://www.jb51.net");
}
</script>

301代表永久性轉移(Permanently Moved),301重新導向是網頁更改地址後對搜尋引擎友好的最好方法,只
要不是暫時搬移的情況,都建議使用301來做轉址。

JSP下的301重新導向 複製代碼 代碼如下:<%@ page language="java" pageEncoding="GBK"%>
<%
response.setStatus(response.SC_MOVED_PERMANENTLY);
response.addHeader("Location","http://www.7hinet.com");
%>

可以通過filter控制需要重向的路徑或頁面

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.