为WP建立清晰的逻辑结构

两步优化WordPress目录结构,使之符合逻辑,对搜索引擎更加友好。
一、更改分类目录的显示结构,使之呈现以下变化:
修改前的文章分类地址:http://xxx.xxx/category/logs 

修改后的文章分类地址:http://xxx.xxx/logs
方法:找到在 wp-includes/文件夹下的 category-template.php文件;

$catlink = $wp_rewrite->get_category_permastruct();

在下面添加

$catlink = str_replace('/category', "", $catlink);

也可以使用"Top Level Categories"或者"WP no category"插件实现此效果。

二、在WP后台中进入设置-固定链接,在自定义链接中输入以下内容:
%category%/%postname%.html
这样,logs分类下的文章地址形式为:
 http:/xxx.xxx/logs/wp-mulu-jiegou.html
通过以上两步,博客的链接形式更符合逻辑。如此清晰的结构,我相信搜索引擎也不会讨厌。

2 Comments