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

301重定向代码(php apache)

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

使用 HTACCESS 文件 添加吧,这是代码:

  1. Options +FollowSymLinks 
  2. RewriteEngine on 
  3. RewriteCond %{HTTP_HOST} ^domain.com[NC] 
  4. RewriteRule ^(.*)$ http://www.phpfensi.com/$1 [L,R=301

php写法:

  1. <? 
  2. Header( "HTTP/1.1 301 Moved Permanently" ); 
  3. Header( "Location: www.phpfensi.com" ); 
  4. ?> 

不带index.php文件:

  1. <?php 
  2. $qurl = $_SERVER['REQUEST_URI']; 
  3. //获取url,伪静态地址也能完整取得 
  4. $qurl = str_replace("/index.php","",$qurl); 
  5. if ($qurl!=""){ 
  6. header("HTTP/1.1 301 Moved Permanently"); 
  7. header("Location: http://www.phpfensi.com"); 
  8. exit();} 
  9. ?> 

Tags: php 301重定向代码

分享到: