Discuz!官方免费开源建站系统

 找回密码
 立即注册

QQ登录

只需一步,快速开始

搜索

301转向代码合集

[复制链接]
island520 发表于 2008-3-23 06:04:02 | 显示全部楼层 |阅读模式
1、IIS下301设置 Chinaz_com

Internet信息服务管理器 -> 虚拟目录 -> 重定向到URL,输入需要转向的目标URL,并选择“资源的永久重定向”。

Chinaz.com


2、ASP下的301转向代码 站.长.站
  1. <%@ Language=VBScript %>
  2. <%
  3. Response.Status=”301 Moved Permanently”
  4. Response.AddHeader “Location”, “http://www.whdxw.com.cn/”
  5. %> 武汉大学网

复制代码
3、ASP.Net下的301转向代码
  1. <script runat=”server”>
  2. private void Page_Load(object sender, System.EventArgs e)
  3. {
  4. Response.Status = “301 Moved Permanently”;
  5. Response.AddHeader(”Location”,”http://www.whdxw.com.cn/“);
  6. }
  7. </script>
复制代码
4、PHP下的301转向代码
  1. header(”HTTP/1.1 301 Moved Permanently”);
  2. header(”Location: http://www.whdxw.com.cn/”);
  3. exit();
复制代码
5、CGI Perl下的301转向代码
  1. $q = new CGI;
  2. print $q->redirect(”http://www.whdxw.com.cn/”);

复制代码
6、JSP下的301转向代码
  1. <%
  2. response.setStatus(301);
  3. response.setHeader( “Location”, “http://www.whdxw.com.cn/” );
  4. response.setHeader( “Connection”, “close” );
  5. %>
复制代码
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

手机版|小黑屋|Discuz! 官方站 ( 皖ICP备16010102号 )star

GMT+8, 2024-11-16 02:37 , Processed in 0.022815 second(s), 3 queries , Gzip On, Redis On.

Powered by Discuz! X3.4

Copyright © 2001-2023, Tencent Cloud.

快速回复 返回顶部 返回列表