emlog默认搜索引擎只支持搜索文章标题,那么要想实现全文搜索该怎么办呢?
找到文件include/controller/search_controller.php中的以下代码:
$sqlSegment = "and title like '%{$keyword}%' order by date desc";
替换为:
【仅全文搜索】
$sqlSegment = "and content like '%{$keyword}%' order by date desc";
【标题+全文搜索】
$sqlSegment = "and (title like '%{$keyword}%' or content like '%{$keyword}%') order by date desc";
注意:全文检索对服务器会造成一定的压力,特别是博文特别多的时候。
有朋自远方来...评论一下呗O(∩_∩)O