网络编程
位置:首页>> 网络编程>> Asp编程>> asp,php,.net使用301重定向方法

asp,php,.net使用301重定向方法

 来源:51windows.Net 发布时间:2007-09-26 14:05:00 

标签:301,重定向

使用 Response.Redirect "aspxhome.asp" 转向方法的HTTP Status Code 为302

下面是301转向的代码:

asp:

Response.Status="301 Moved Permanently" 
Response.AddHeader "Location", "https://www.aspxhome.com/"
Response.End


Php:

header("HTTP/1.1 301 Moved Permanently");
header("Location:https://www.aspxhome.com/);
exit();


ASP.NET:

<script runat="server">
private void Page_Load(object sender, System.EventArgs e)
{
 Response.Status = "301 Moved Permanently";
 Response.AddHeader("Location","https://www.aspxhome.com/);
}
</script>


海娃整理

0
投稿

猜你喜欢

手机版 网络编程 asp之家 www.aspxhome.com