织梦Dedecms默认的模糊搜索只能根据网站文章的名称进行搜索,无法搜索到文章内部信息,下面讲一下如何让Dedecms自带搜索实现全文检索:
1、后台-->核心-->频道模型-->内容模型管理 -->普通文章-->点击后面那个放大镜标志(最重要一步)-->附件表可供自定义搜索的字段,这里的字段是程序依据字段类型自动选择 生成的,将“文章内容”前面那个打勾,此时将修改掉搜索字段,但是还没有成功,还需要修改模板相应的代码。
2、将模板文件 head.htm 中的以下代码
01 | <form action="{dede:field name='phpurl'/}/search.php" name="formsearch"> |
07 | <input type="hidden" name="kwtype" value="0" /> |
09 | <input name="keyword" type="text" class="search-keyword" id="search-keyword" /> |
11 | <select name="searchtype" class="search-option" id="search-option"> |
13 | <option value="titlekeyword" selected='1'>智能模糊搜索</option> |
15 | <option value="title">仅搜索标题</option> |
19 | <button type="submit" class="search-submit">搜索</button> |
27 | 修改为<form action="/plus/advancedsearch.php" method="post"> |
33 | <input type="hidden" name="mid" value="1" /> |
35 | <input type="hidden" name="dopost" value="search" /> |
37 | 关键词:<input type="text" name="q" /> <input type="submit" name="submit"value="开始全文搜索" /></div> |
本文链接:http://so.lmcjl.com/news/4235/