Vit4

  博客园 :: 首页 :: 博问 :: 闪存 :: 新随笔 :: 联系 :: 订阅 订阅 :: 管理 ::

建立.htaccess文件  //可在windows cmd下或是通过文本编辑器完成

301重定向代码如下:

rewriteEngine on

rewriteCond %{http_host} ^abc.com [NC]

rewriteRule ^(.*)$ http://www.baidu.com/$1 [R=301,L]

rewriteCond %{http_host} ^www.abc.com [NC]

rewriteRule ^(.*)$ http://www.baidu.com/$1 [R=301,L]

可以定义多条同时实现多个跳转

posted on 2012-10-26 15:24  Vit4  阅读(173)  评论(0编辑  收藏  举报