301永久网址转向到二级域名时转向循环问题

301永久转向到二级域名循环

301永久转向到二级域名循环

1. 转向循环


在虚拟主机中,对于绑定的子域名访问时很可能仍需要进过顶级域名目录的.htaccess转向,从而造成了顶级域名下.htaccess转向二级域名同一位置后,继续重复转向死循环。

最近为了将博客一分为二,将主域名http://heymu.com下的部分文章转向了http://life.heymu.com,目前本博客使用的是DA面板(DirectAdmin),绑定的域名为 heymu.com,而life.heymu.com是作为其一个子域名,文件位于/domains/heymu.co/public_html/life目录,刚开始是使用了最普通的.htaccess的redirect转向命令。

如将http://heymu.com/2006/03/skhbt.html这个原来的地址转向新的地址http://life.heymu.com/2006/03/skhbt.html。则在 heymu.com的根目录下的.htaccess中写:

redirect 301 /2006/03/skhbt.html http://life.heymu.com/2006/03/skhbt.html

这时就出现了文章前面出现的图中问题。

猜测其原因,应当是系统将life.heymu.com自动转定位到heymu.com/life,从而会经过heymu.com这一层的.htaccess处理。貌似是一个BUG呀……

2. 换用另一种转向


寻找另外一种转向方式,可以使用Apache的mod_rewrite模块,需要通过phpinfo查看一下是否开启了此Apache 模块。

RewriteEngine On RewriteBase /
RewriteCond %{HTTP_HOST} ^heymu.com$
RewriteRule ^2006/03/skhbt.html$ http://life.heymu.com/2006/03/skhbt.html [R=301,L]

第三行是一个过滤,只对HTTP_HOST,即访问域名“明确”为heymu.com的访问进行处理,也就是说对 life.heymu.com的访问将不会进行处理。
第四行RewriteRule中前者是需要转换的原地址,注意不要以/开头,后面为专向地址。R=301表示为永久转移,也可以选择302、303等,L 表示处理到此成功后就直接完成处理,不进过后面过滤器。

这样一来,就不会将访问二级域名的内容也进行同样的转换,从而形成了循环转换问题。

3. 批量生成转向


顺便说下,对于我这两三百条需要转换的地址,手工转有点一筹莫展,于是就通过WordPress的Google Sitemap XML插件生成整个网站XML,复制数据到Excel,排除掉分类页面、主页还有其他不需要转换的页面。通过全部替换功能,按照上面给的 RewriteRule格式,生成规范的列表。有些条目可能还需要手工调整一下,比如原页面heymu.com/friends有可能会有通过 heymu.com/friends/访问的,因此将这样情况也转移到http://life.heymu.com/friends。

以下就是此次博客一分为二过程中,从主域名heymu.com搬到二级域名life.heymu.com的.htaccess命令:

RewriteBase /
RewriteCond %{HTTP_HOST} ^heymu.com$
RewriteRule ^friends/$ http://life.heymu.com/friends/ [R=301,L]
RewriteRule ^friends/ganyu/$ http://life.heymu.com/friends/ganyu [R=301,L]
RewriteRule ^friends$ http://life.heymu.com/friends/ [R=301,L]
RewriteRule ^friends/ganyu$ http://life.heymu.com/friends/ganyu [R=301,L]
RewriteRule ^2004/12/zj2-tianci-changxiangsi.html$ http://life.heymu.com/2004/12/zj2-tianci-changxiangsi.html [R=301,L]
RewriteRule ^2005/05/shuxue-dashinianbiao.html$ http://life.heymu.com/2005/05/shuxue-dashinianbiao.html [R=301,L]
RewriteRule ^2005/05/zj2-jiewenshouji.html$ http://life.heymu.com/2005/05/zj2-jiewenshouji.html [R=301,L]
RewriteRule ^2005/06/feelling-after-rain.html$ http://life.heymu.com/2005/06/feelling-after-rain.html [R=301,L]
RewriteRule ^2005/06/pingpingpangpang.html$ http://life.heymu.com/2005/06/pingpingpangpang.html [R=301,L]
RewriteRule ^2005/06/sgzjj.html$ http://life.heymu.com/2005/06/sgzjj.html [R=301,L]
RewriteRule ^2005/06/the-furthest-distance-in-the-world.html$ http://life.heymu.com/2005/06/the-furthest-distance-in-the-world.html [R=301,L]
RewriteRule ^2005/07/yywzgfbz.html$ http://life.heymu.com/2005/07/yywzgfbz.html [R=301,L]
RewriteRule ^2005/08/76wuyongchengyu.html$ http://life.heymu.com/2005/08/76wuyongchengyu.html [R=301,L]
RewriteRule ^2005/08/beijing2008-fivefriends.html$ http://life.heymu.com/2005/08/beijing2008-fivefriends.html [R=301,L]
RewriteRule ^2005/08/china-partys.html$ http://life.heymu.com/2005/08/china-partys.html [R=301,L]
RewriteRule ^2005/09/2005-mid-schools-ranks.html$ http://life.heymu.com/2005/09/2005-mid-schools-ranks.html [R=301,L]
RewriteRule ^2005/09/chineses-voice-of-100years.html$ http://life.heymu.com/2005/09/chineses-voice-of-100years.html [R=301,L]
RewriteRule ^2005/10/10words-problems-of-2004.html$ http://life.heymu.com/2005/10/10words-problems-of-2004.html [R=301,L]
RewriteRule ^2005/10/2005guojiwulinian.html$ http://life.heymu.com/2005/10/2005guojiwulinian.html [R=301,L]
RewriteRule ^2005/10/gz-maths-olympic-dagang.html$ http://life.heymu.com/2005/10/gz-maths-olympic-dagang.html [R=301,L]
RewriteRule ^2005/11/zyj-ml.html$ http://life.heymu.com/2005/11/zyj-ml.html [R=301,L]
RewriteRule ^2005/12/43th-mersenne-prime.html$ http://life.heymu.com/2005/12/43th-mersenne-prime.html [R=301,L]
RewriteRule ^2006/01/112-useful-words.html$ http://life.heymu.com/2006/01/112-useful-words.html [R=301,L]
RewriteRule ^2006/01/1989china-gfsm.html$ http://life.heymu.com/2006/01/1989china-gfsm.html [R=301,L]
RewriteRule ^2006/01/gdwhcs.html$ http://life.heymu.com/2006/01/gdwhcs.html [R=301,L]
RewriteRule ^2006/01/luxun-61poems.html$ http://life.heymu.com/2006/01/luxun-61poems.html [R=301,L]
RewriteRule ^2006/01/myheimu-2006-bkdy.html$ http://life.heymu.com/2006/01/myheimu-2006-bkdy.html [R=301,L]
RewriteRule ^2006/02/about-iter.html$ http://life.heymu.com/2006/02/about-iter.html [R=301,L]
RewriteRule ^2006/02/hxjsdg.html$ http://life.heymu.com/2006/02/hxjsdg.html [R=301,L]
RewriteRule ^2006/02/tangshi300.html$ http://life.heymu.com/2006/02/tangshi300.html [R=301,L]
RewriteRule ^2006/03/100-great-problems-of-elementary-mathematics.html$ http://life.heymu.com/2006/03/100-great-problems-of-elementary-mathematics.html [R=301,L]
RewriteRule ^2006/03/100-wrong-words.html$ http://life.heymu.com/2006/03/100-wrong-words.html [R=301,L]
RewriteRule ^2006/03/english-is-so-interesting-and-widely-used.html$ http://life.heymu.com/2006/03/english-is-so-interesting-and-widely-used.html [R=301,L]
RewriteRule ^2006/03/light-history.html$ http://life.heymu.com/2006/03/light-history.html [R=301,L]
RewriteRule ^2006/03/mmr.html$ http://life.heymu.com/2006/03/mmr.html [R=301,L]
RewriteRule ^2006/03/several-words-in-gbk.html$ http://life.heymu.com/2006/03/several-words-in-gbk.html [R=301,L]
RewriteRule ^2006/03/skhbt.html$ http://life.heymu.com/2006/03/skhbt.html [R=301,L]
RewriteRule ^2006/03/what-is-material-wave.html$ http://life.heymu.com/2006/03/what-is-material-wave.html [R=301,L]
RewriteRule ^2006/03/wljsdg.html$ http://life.heymu.com/2006/03/wljsdg.html [R=301,L]
RewriteRule ^2006/04/gdzg2005.html$ http://life.heymu.com/2006/04/gdzg2005.html [R=301,L]
RewriteRule ^2006/04/hus-speach-at-yelu.html$ http://life.heymu.com/2006/04/hus-speach-at-yelu.html [R=301,L]
RewriteRule ^2006/04/jkkldql-xiangxiang.html$ http://life.heymu.com/2006/04/jkkldql-xiangxiang.html [R=301,L]
RewriteRule ^2006/04/light-bodongxing-ziliao.html$ http://life.heymu.com/2006/04/light-bodongxing-ziliao.html [R=301,L]
RewriteRule ^2006/04/lyy.html$ http://life.heymu.com/2006/04/lyy.html [R=301,L]
RewriteRule ^2006/04/xdhy-cyzb.html$ http://life.heymu.com/2006/04/xdhy-cyzb.html [R=301,L]
RewriteRule ^2006/05/2006-7s-g3m3.html$ http://life.heymu.com/2006/05/2006-7s-g3m3.html [R=301,L]
RewriteRule ^2006/05/koulus-doc.html$ http://life.heymu.com/2006/05/koulus-doc.html [R=301,L]
RewriteRule ^2006/05/new-bjx.html$ http://life.heymu.com/2006/05/new-bjx.html [R=301,L]
RewriteRule ^2006/06/06gk-bjyw-news.html$ http://life.heymu.com/2006/06/06gk-bjyw-news.html [R=301,L]
RewriteRule ^2006/06/200666.html$ http://life.heymu.com/2006/06/200666.html [R=301,L]
RewriteRule ^2006/06/2006gaokaozuowen.html$ http://life.heymu.com/2006/06/2006gaokaozuowen.html [R=301,L]
RewriteRule ^2006/06/2006gk-jshx.html$ http://life.heymu.com/2006/06/2006gk-jshx.html [R=301,L]
RewriteRule ^2006/06/2006gk-jssx.html$ http://life.heymu.com/2006/06/2006gk-jssx.html [R=301,L]
RewriteRule ^2006/06/2006gk-jswl.html$ http://life.heymu.com/2006/06/2006gk-jswl.html [R=301,L]
RewriteRule ^2006/06/2006gk-jsyw.html$ http://life.heymu.com/2006/06/2006gk-jsyw.html [R=301,L]
RewriteRule ^2006/06/2006gk-jsyy.html$ http://life.heymu.com/2006/06/2006gk-jsyy.html [R=301,L]
RewriteRule ^2006/06/2006gkqg1-wrong.html$ http://life.heymu.com/2006/06/2006gkqg1-wrong.html [R=301,L]
RewriteRule ^2006/06/2006jshx-wrong.html$ http://life.heymu.com/2006/06/2006jshx-wrong.html [R=301,L]
RewriteRule ^2006/06/another-wrong-in-2006jshx.html$ http://life.heymu.com/2006/06/another-wrong-in-2006jshx.html [R=301,L]
RewriteRule ^2006/06/bajiao-tamiflu.html$ http://life.heymu.com/2006/06/bajiao-tamiflu.html [R=301,L]
RewriteRule ^2006/06/chengmingzhe.html$ http://life.heymu.com/2006/06/chengmingzhe.html [R=301,L]
RewriteRule ^2006/06/gjjdr-ttz.html$ http://life.heymu.com/2006/06/gjjdr-ttz.html [R=301,L]
RewriteRule ^2006/06/new-dictionay.html$ http://life.heymu.com/2006/06/new-dictionay.html [R=301,L]
RewriteRule ^2006/06/notes-online.html$ http://life.heymu.com/2006/06/notes-online.html [R=301,L]
RewriteRule ^2006/06/sgz2005lq.html$ http://life.heymu.com/2006/06/sgz2005lq.html [R=301,L]
RewriteRule ^2006/06/some-problems-today.html$ http://life.heymu.com/2006/06/some-problems-today.html [R=301,L]
RewriteRule ^2006/06/spz-in-id.html$ http://life.heymu.com/2006/06/spz-in-id.html [R=301,L]
RewriteRule ^2006/06/zhuan-dgkct.html$ http://life.heymu.com/2006/06/zhuan-dgkct.html [R=301,L]
RewriteRule ^2006/06/zj4-bokke-myheimu.html$ http://life.heymu.com/2006/06/zj4-bokke-myheimu.html [R=301,L]
RewriteRule ^2006/07/2006-top500.html$ http://life.heymu.com/2006/07/2006-top500.html [R=301,L]
RewriteRule ^2006/07/china-yin.html$ http://life.heymu.com/2006/07/china-yin.html [R=301,L]
RewriteRule ^2006/07/come-from-yangzhong.html$ http://life.heymu.com/2006/07/come-from-yangzhong.html [R=301,L]
RewriteRule ^2006/07/dissolve-table.html$ http://life.heymu.com/2006/07/dissolve-table.html [R=301,L]
RewriteRule ^2006/07/dwhhjc.html$ http://life.heymu.com/2006/07/dwhhjc.html [R=301,L]
RewriteRule ^2006/07/gkyjhm.html$ http://life.heymu.com/2006/07/gkyjhm.html [R=301,L]
RewriteRule ^2006/07/great-rainstorm.html$ http://life.heymu.com/2006/07/great-rainstorm.html [R=301,L]
RewriteRule ^2006/07/hang-ten.html$ http://life.heymu.com/2006/07/hang-ten.html [R=301,L]
RewriteRule ^2006/07/hmxg.html$ http://life.heymu.com/2006/07/hmxg.html [R=301,L]
RewriteRule ^2006/07/hmxg-prepare.html$ http://life.heymu.com/2006/07/hmxg-prepare.html [R=301,L]
RewriteRule ^2006/07/lx-1288.html$ http://life.heymu.com/2006/07/lx-1288.html [R=301,L]
RewriteRule ^2006/07/new-words.html$ http://life.heymu.com/2006/07/new-words.html [R=301,L]
RewriteRule ^2006/07/probability.html$ http://life.heymu.com/2006/07/probability.html [R=301,L]
RewriteRule ^2006/07/speak-in-low-voice.html$ http://life.heymu.com/2006/07/speak-in-low-voice.html [R=301,L]
RewriteRule ^2006/07/tangshan-30y.html$ http://life.heymu.com/2006/07/tangshan-30y.html [R=301,L]
RewriteRule ^2006/07/wrong-newhua.html$ http://life.heymu.com/2006/07/wrong-newhua.html [R=301,L]
RewriteRule ^2006/07/xzqh.html$ http://life.heymu.com/2006/07/xzqh.html [R=301,L]
RewriteRule ^2006/07/yzzx-goodbye.html$ http://life.heymu.com/2006/07/yzzx-goodbye.html [R=301,L]
RewriteRule ^2006/08/2005gdp.html$ http://life.heymu.com/2006/08/2005gdp.html [R=301,L]
RewriteRule ^2006/08/2008js-gkfa.html$ http://life.heymu.com/2006/08/2008js-gkfa.html [R=301,L]
RewriteRule ^2006/08/after13years-c-j-k.html$ http://life.heymu.com/2006/08/after13years-c-j-k.html [R=301,L]
RewriteRule ^2006/08/against-taiwan.html$ http://life.heymu.com/2006/08/against-taiwan.html [R=301,L]
RewriteRule ^2006/08/a-history-problem.html$ http://life.heymu.com/2006/08/a-history-problem.html [R=301,L]
RewriteRule ^2006/08/china-biyezhengshu.html$ http://life.heymu.com/2006/08/china-biyezhengshu.html [R=301,L]
RewriteRule ^2006/08/classic-problems.html$ http://life.heymu.com/2006/08/classic-problems.html [R=301,L]
RewriteRule ^2006/08/funny-gif-qingkou.html$ http://life.heymu.com/2006/08/funny-gif-qingkou.html [R=301,L]
RewriteRule ^2006/08/gaodengjiaoyu-2300w.html$ http://life.heymu.com/2006/08/gaodengjiaoyu-2300w.html [R=301,L]
RewriteRule ^2006/08/gk2006js-shuxue-fenxi.html$ http://life.heymu.com/2006/08/gk2006js-shuxue-fenxi.html [R=301,L]
RewriteRule ^2006/08/houyong-chengengdajiang.html$ http://life.heymu.com/2006/08/houyong-chengengdajiang.html [R=301,L]
RewriteRule ^2006/08/hu-grandfather.html$ http://life.heymu.com/2006/08/hu-grandfather.html [R=301,L]
RewriteRule ^2006/08/in_hanzi.html$ http://life.heymu.com/2006/08/in_hanzi.html [R=301,L]
RewriteRule ^2006/08/me-and-aq.html$ http://life.heymu.com/2006/08/me-and-aq.html [R=301,L]
RewriteRule ^2006/08/percentage-point.html$ http://life.heymu.com/2006/08/percentage-point.html [R=301,L]
RewriteRule ^2006/08/shetai-yongyu.html$ http://life.heymu.com/2006/08/shetai-yongyu.html [R=301,L]
RewriteRule ^2006/08/shuangxin-zhezhi.html$ http://life.heymu.com/2006/08/shuangxin-zhezhi.html [R=301,L]
RewriteRule ^2006/08/sun-zuxu.html$ http://life.heymu.com/2006/08/sun-zuxu.html [R=301,L]
RewriteRule ^2006/08/today-rainstorm.html$ http://life.heymu.com/2006/08/today-rainstorm.html [R=301,L]
RewriteRule ^2006/08/weijingyingwenhua.html$ http://life.heymu.com/2006/08/weijingyingwenhua.html [R=301,L]
RewriteRule ^2006/08/zhong-ganyuzhixi.html$ http://life.heymu.com/2006/08/zhong-ganyuzhixi.html [R=301,L]
RewriteRule ^2006/08/zhongyou-wlz.html$ http://life.heymu.com/2006/08/zhongyou-wlz.html [R=301,L]
RewriteRule ^2006/09/ganzhi.html$ http://life.heymu.com/2006/09/ganzhi.html [R=301,L]
RewriteRule ^2006/09/september-has-many-holidays.html$ http://life.heymu.com/2006/09/september-has-many-holidays.html [R=301,L]
RewriteRule ^2006/09/tuhuashi.html$ http://life.heymu.com/2006/09/tuhuashi.html [R=301,L]
RewriteRule ^2006/10/3-fun-stories.html$ http://life.heymu.com/2006/10/3-fun-stories.html [R=301,L]
RewriteRule ^2006/10/barongbachi.html$ http://life.heymu.com/2006/10/barongbachi.html [R=301,L]
RewriteRule ^2006/10/bkdy-2007.html$ http://life.heymu.com/2006/10/bkdy-2007.html [R=301,L]
RewriteRule ^2006/10/china-liuxing-1978-1992.html$ http://life.heymu.com/2006/10/china-liuxing-1978-1992.html [R=301,L]
RewriteRule ^2006/10/go-to-huaiah.html$ http://life.heymu.com/2006/10/go-to-huaiah.html [R=301,L]
RewriteRule ^2006/10/post-newspaper-2007.html$ http://life.heymu.com/2006/10/post-newspaper-2007.html [R=301,L]
RewriteRule ^2006/10/slqm.html$ http://life.heymu.com/2006/10/slqm.html [R=301,L]
RewriteRule ^2006/11/caifangji.html$ http://life.heymu.com/2006/11/caifangji.html [R=301,L]
RewriteRule ^2006/11/js2008gk-news.html$ http://life.heymu.com/2006/11/js2008gk-news.html [R=301,L]
RewriteRule ^2006/11/js-zhks-tongzhi.html$ http://life.heymu.com/2006/11/js-zhks-tongzhi.html [R=301,L]
RewriteRule ^2006/11/mbz-tishou.html$ http://life.heymu.com/2006/11/mbz-tishou.html [R=301,L]
RewriteRule ^2006/11/qinghua-putoff-dly.html$ http://life.heymu.com/2006/11/qinghua-putoff-dly.html [R=301,L]
RewriteRule ^2006/11/xieshiji.html$ http://life.heymu.com/2006/11/xieshiji.html [R=301,L]
RewriteRule ^2006/11/ywjzwrongs.html$ http://life.heymu.com/2006/11/ywjzwrongs.html [R=301,L]
RewriteRule ^2006/11/zhongwaijieri.html$ http://life.heymu.com/2006/11/zhongwaijieri.html [R=301,L]
RewriteRule ^2006/12/2006-zuojiafuhaobang.html$ http://life.heymu.com/2006/12/2006-zuojiafuhaobang.html [R=301,L]
RewriteRule ^2006/12/about-cctv-360.html$ http://life.heymu.com/2006/12/about-cctv-360.html [R=301,L]
RewriteRule ^2006/12/huikao-monikao.html$ http://life.heymu.com/2006/12/huikao-monikao.html [R=301,L]
RewriteRule ^2006/12/meet-study.html$ http://life.heymu.com/2006/12/meet-study.html [R=301,L]
RewriteRule ^2006/12/shizongdehanzuozuo.html$ http://life.heymu.com/2006/12/shizongdehanzuozuo.html [R=301,L]
RewriteRule ^2006/12/welcome2007.html$ http://life.heymu.com/2006/12/welcome2007.html [R=301,L]
RewriteRule ^2006/12/woshiqian.html$ http://life.heymu.com/2006/12/woshiqian.html [R=301,L]
RewriteRule ^2007/01/07jskssm-begin.html$ http://life.heymu.com/2007/01/07jskssm-begin.html [R=301,L]
RewriteRule ^2007/01/get-pluto-out-of-here.html$ http://life.heymu.com/2007/01/get-pluto-out-of-here.html [R=301,L]
RewriteRule ^2007/01/tsinghua-zzzs-jieguo.html$ http://life.heymu.com/2007/01/tsinghua-zzzs-jieguo.html [R=301,L]
RewriteRule ^2007/02/chu-vs-chu.html$ http://life.heymu.com/2007/02/chu-vs-chu.html [R=301,L]
RewriteRule ^2007/03/jingmoca-work.html$ http://life.heymu.com/2007/03/jingmoca-work.html [R=301,L]
RewriteRule ^2007/04/live-in-fire.html$ http://life.heymu.com/2007/04/live-in-fire.html [R=301,L]
RewriteRule ^2007/05/despise-v2ex.html$ http://life.heymu.com/2007/05/despise-v2ex.html [R=301,L]
RewriteRule ^2007/06/2007gaokao.html$ http://life.heymu.com/2007/06/2007gaokao.html [R=301,L]
RewriteRule ^2007/06/advice-for-sgz.html$ http://life.heymu.com/2007/06/advice-for-sgz.html [R=301,L]
RewriteRule ^2007/06/all-classmates-list.html$ http://life.heymu.com/2007/06/all-classmates-list.html [R=301,L]
RewriteRule ^2007/06/bad-comment.html$ http://life.heymu.com/2007/06/bad-comment.html [R=301,L]
RewriteRule ^2007/06/ganyuhua.html$ http://life.heymu.com/2007/06/ganyuhua.html [R=301,L]
RewriteRule ^2007/06/graduate-ceremony.html$ http://life.heymu.com/2007/06/graduate-ceremony.html [R=301,L]
RewriteRule ^2007/06/gy-jianbing.html$ http://life.heymu.com/2007/06/gy-jianbing.html [R=301,L]
RewriteRule ^2007/06/houyaowen-gone.html$ http://life.heymu.com/2007/06/houyaowen-gone.html [R=301,L]
RewriteRule ^2007/06/miss-heymu.html$ http://life.heymu.com/2007/06/miss-heymu.html [R=301,L]
RewriteRule ^2007/06/sciencemag-125th.html$ http://life.heymu.com/2007/06/sciencemag-125th.html [R=301,L]
RewriteRule ^2007/06/sgz-stu-mag-2007.html$ http://life.heymu.com/2007/06/sgz-stu-mag-2007.html [R=301,L]
RewriteRule ^2007/06/tanxuexue.html$ http://life.heymu.com/2007/06/tanxuexue.html [R=301,L]
RewriteRule ^2007/06/zsjh-in-js.html$ http://life.heymu.com/2007/06/zsjh-in-js.html [R=301,L]
RewriteRule ^2007/07/go-out.html$ http://life.heymu.com/2007/07/go-out.html [R=301,L]
RewriteRule ^2007/08/goto_tsinghua.html$ http://life.heymu.com/2007/08/goto_tsinghua.html [R=301,L]
RewriteRule ^2007/10/ganyu-light-to-my-room.html$ http://life.heymu.com/2007/10/ganyu-light-to-my-room.html [R=301,L]
RewriteRule ^2007/10/phone-light.html$ http://life.heymu.com/2007/10/phone-light.html [R=301,L]
RewriteRule ^2007/11/hechang-12-9.html$ http://life.heymu.com/2007/11/hechang-12-9.html [R=301,L]
RewriteRule ^2007/11/thu-pku-change-holidays-for-beijing2008.html$ http://life.heymu.com/2007/11/thu-pku-change-holidays-for-beijing2008.html [R=301,L]
RewriteRule ^2007/12/dosugus-dos-baozhen.html$ http://life.heymu.com/2007/12/dosugus-dos-baozhen.html [R=301,L]
RewriteRule ^2007/12/fetion-yaoqinghan.html$ http://life.heymu.com/2007/12/fetion-yaoqinghan.html [R=301,L]
RewriteRule ^2007/12/mozilla-online-thu-jiangzuo.html$ http://life.heymu.com/2007/12/mozilla-online-thu-jiangzuo.html [R=301,L]
RewriteRule ^2007/12/tongfang-computer-enter-thu.html$ http://life.heymu.com/2007/12/tongfang-computer-enter-thu.html [R=301,L]
RewriteRule ^2007/12/welcome2008.html$ http://life.heymu.com/2007/12/welcome2008.html [R=301,L]
RewriteRule ^2008/01/2007-china-net-joke.html$ http://life.heymu.com/2008/01/2007-china-net-joke.html [R=301,L]
RewriteRule ^2008/01/thu-professional.html$ http://life.heymu.com/2008/01/thu-professional.html [R=301,L]
RewriteRule ^2008/08/xys20080812.html$ http://life.heymu.com/2008/08/xys20080812.html [R=301,L]

One Comment:

  1. 谢谢!!你的留言系统也很强大,即时的

发表回复

您的电子邮箱地址不会被公开。 必填项已用*标注

此站点使用Akismet来减少垃圾评论。了解我们如何处理您的评论数据