一聚教程网:一个值得你收藏的教程网站

最新下载

热门教程

asp/asp.net/php实现301重定向代码

时间:2011-02-24 编辑:简简单单 来源:一聚教程网

asp教程/asp.net教程/php教程实现301重定向代码,一般我们做301是全用iis,apache来实现,在没有操作服务器的时我们再用脚本来实现,代码如下。
1、asp下的301重定向代码

<%@ language=vbscript %>
<%
response.status=”301 moved permanently”
response.addheader “location”, “106/”
%>

2、asp.net下的301重定向代码

3、php下的301重定向代码

header(”http/1.1 301 moved permanently”);
header(”location: 106/”);
exit();

 

热门栏目