WordPress 3.1 链接格式改变
http://xyz/archives/tag/xxx 改为 http://xyz/tag/xxx
http://xyz/archives/category/xxx 改为 http://xyz/category/xxx
为了保证搜索引擎已收录的旧链接不挂掉,可以使用 rewrite 进行重定向(nginx)
rewrite ^/archives/tag/(.*) /tag/$1 permanent;
rewrite ^/archives/category/(.*) /category/$1 permanent;