答案:
在根目录下有一个文件夹为plus,里面有一个search.php文件,这个文件就是实现CMS搜索的内部文件。然后在你的表单代码中加入
<form id="search" name="search" method="post" action="/plus/search.php"> <input type="text" name="keyword" /> <input type="submit" value="" /> </form>
这样就可以实现搜素功能了,然后新建一个search.htm模板,你提交之后,PHP脚本会自动调用搜索模板显示页面。