| 以下为ASP.NET301重定向代码: <%@ Page Language=”C#” %> <% Response.Status = “HTTP/1.1 301 Moved Permanently”; Response.Headers.Add(“Location”, http://www.cnwshow.com/); %> |
| 以下为ASP.NET301精确重定向代码: <%@ Page Language=”C#” %> <% Response.Status = “HTTP/1.1 301 Moved Permanently”; Response.Headers.Add(“Location”, “http://www.cnwshow.com/”.Request.ServerVariables(“HTTP_X_REWRITE_URL”)); %> |
