当前位置:首页 > PHP教程 > php应用 > 列表

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

发布:smiling 来源: PHP粉丝网  添加日期:2014-08-05 13:38:42 浏览: 评论:0 

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

1、asp下的301重定向代码

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

2、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”,” 106/“);  
  6. }  
  7. </script>  

3、php下的301重定向代码

  1. header(”http/1.1 301 moved permanently”);  
  2. header(”location: 106/”);  
  3. exit();  

Tags: asp asp net php重定向代码

分享到: