Blog独立小记

今日起正式在behindgfw.com架设独立Blog,选在这个节日其实是种巧合。

原来使用Blogger Custom Domains时,不能控制blog的目录,现在既然独立了,当然不会再安装在根目录下,下载安装wordpress到/archives目录。再设置permanentlink形如/%year%/%monthnum%/%postname%.html 。使用.htaccess文件可以方便地实现上述重定向功能:

Redirect permanent /2005 http://www.behindgfw.com/archives/2005
Redirect permanent /2006 http://www.behindgfw.com/archives/2006
Redirect permanent /2007 http://www.behindgfw.com/archives/2007

<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /archives/
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /archives/index.php [L]
</IfModule>

使用wordpress自带的导入blogger功能,非常方便,但是permanentlink变为文章标题了。遂修改permanentlink和原来Blogger Custom Domains时一致,保证从搜索引擎来的访问连续性。但是发现如果有两篇帖子,例如想permanentlink修改为2006/07/blog-post.html、2007/07/blog-post.html,在修改post slug为blog-post后,后者permanentlink将变为2007/07/blog-post_2.html,以此类推。直接操作数据库修改有点怕怕,就此作罢。

备份wordpress数据库千万不敢忘,主机商一般都提供了phpMyAdmin备份wordpress数据库功能,自己安装一个也不是很复杂,或者使用数据库备份插件也很方便。

暂时先到这里啦,还有模板需要慢慢调整…

One Comment

Comments are closed.