Emlog实现全文加标题搜索方法教程
Posted fdffgfg
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Emlog实现全文加标题搜索方法教程相关的知识,希望对你有一定的参考价值。
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";
注意:全文检索对服务器会造成一定的压力,特别是你的文章特别多的时候,是不建议的,万一当机了就不好玩了,是吧。
以上是关于Emlog实现全文加标题搜索方法教程的主要内容,如果未能解决你的问题,请参考以下文章