使用301重定向源码精华教程
|
| 论文作者:佚名 论文来源:不详 论文发布时间:2006-6-20 2:36:42 论文发布人:chjchjchj |
减小字体
增大字体
使用 Response.Redirect "51windows.asp" 转向方法的HTTP Status Code 为302
下面是301转向的代码:
asp: Response.Status="301 Moved Permanently" Response.AddHeader "Location", "http://www.51windows.net/" Response.End
Php: header("HTTP/1.1 301 Moved Permanently"); header("Location:http://www.51windows.net/); exit();
ASP.NET: <script runat="server"> private void Page_Load(object sender, System.EventArgs e) { Response.Status = "301 Moved Permanently"; Response.AddHeader("Location","http://www.51windows.net/); } </script>
(出处:
|
|
|
|
|
|
|
| ∷相关技术评论 |
(评论内容只代表网友观点,与本站立场无关!) [查看发表评论...] | |
|
|
| |
站内广告 |
| |
|
站内搜索 |
| |
栏目导航 |
| |
|
|
相关技术 |
 |
|
本月热门 |
| |
|
|
本日热门 |
| |
|
|
|