POST TIME:2020-03-28 22:02
大家都知道织梦模板设置伪静态比较容易,这个我们不少的站长都进行过尝试,但设置织梦模板的搜索伪静态却没有进行过尝试,今天就设置搜索伪静态及显示热门搜索词的方法进行小结。
1、织梦模板搜索伪静态的方法。
RewriteEngine On
RewriteBase /
RewriteRule ^tags/(.+)/$ /plus/search.php?kwtype=0&keyword=$1&searchtype=titlekeyword
2、单页显示显示热门搜索词和搜索次数的方法
把下面的代码保存到index.php中,当然可以其他的名字
<?php
require_once(dirname(__FILE__).'/../include/common.inc.php');
global $cfg_mainsite,$cfg_plus_dir;
$cfg_phpurl = $cfg_mainsite.$cfg_plus_dir;
$dsql = new DedeSql(false);
$dsql->SetQuery("Select keyword,result From dede_search_keywords order by result desc limit 0,100");
$dsql->Execute('hw');
$hotword = "";
while($row=$dsql->GetArray('hw')){
if($row['istag']==1) $hotword .= "
上一篇:织梦CMS如何调用会员相关信息