最模板 - 外贸网站建设,外贸网站模板

最模板

当前位置: 首页 > 建站教程 > php教程 >

301重定向代码(php apache)

时间:2014-06-09 16:40来源: 作者: 点击:
使用 HTACCESS 文件 添加吧,这是代码: Options+FollowSymLinks RewriteEngineon RewriteCond%{HTTP_HOST}^domain.com[NC] RewriteRule^(.*)$http://www.vcphp.com/$1[L, R = 301 ] php写法: ? Header( HTTP/1.1301MovedPermanently ); Header( Location:ww

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

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

php写法:

  1. <? 
  2. Header( "HTTP/1.1 301 Moved Permanently" ); 
  3. Header( "Location: www.vcphp.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.vcphp.com"); 
  8. exit();} 
  9. ?> 
(责任编辑:admin)
------分隔线----------------------------
栏目列表
推荐内容