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

最新下载

热门教程

301重定向代码(php apache)

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

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

Options +FollowSymLinks

RewriteEngine on

RewriteCond %{HTTP_HOST} ^domain.com[NC]

RewriteRule ^(.*)$ http://www.111com.net/$1 [L,R=301]

php教程写法

  Header( "HTTP/1.1 301 Moved Permanently" );
  Header( "Location: www.111com.net" );
  ?>

不带index.php文件

$qurl = $_SERVER['REQUEST_URI'];
//获取url,伪静态地址也能完整取得
$qurl = str_replace("/index.php","",$qurl);
if ($qurl!=""){
header("HTTP/1.1 301 Moved Permanently");
header("Location: http://www.111com.net");
exit();}
?>

热门栏目