当前位置: 首页 > 站长资讯 > 正文页面

ECMS(帝国CMS)搜索伪静态

本次修改是基于ECMS(帝国cms) EmpireCMS v7.0 Free (201301151518)版本下测试修改的。其他未测试,大同小异吧。可以根据修改做修改即可vfP网站目录_网站网址收录与提交入口

一、打开/e/search/index.php   411行左右,找到:
Header(“Location:result/?searchid=$searchid”.$dogetvar);vfP网站目录_网站网址收录与提交入口

修改为:vfP网站目录_网站网址收录与提交入口

Header(“Location:$public_r[newsurl]search-0-$searchid.html”.$dogetvar);vfP网站目录_网站网址收录与提交入口

二、打开/e/search/result/index.php  20行左右,找到:vfP网站目录_网站网址收录与提交入口

//搜索结果vfP网站目录_网站网址收录与提交入口

$searchid=(int)$_GET['searchid'];vfP网站目录_网站网址收录与提交入口

在前面添加分页函数:vfP网站目录_网站网址收录与提交入口

//增加分页函数vfP网站目录_网站网址收录与提交入口

function page10($num,$line,$page_line,$start,$page,$search){vfP网站目录_网站网址收录与提交入口

global $fun_r;vfP网站目录_网站网址收录与提交入口

if($num<=$line)vfP网站目录_网站网址收录与提交入口

{vfP网站目录_网站网址收录与提交入口

return ”;vfP网站目录_网站网址收录与提交入口

}vfP网站目录_网站网址收录与提交入口

$search=RepPostStr($search,1);vfP网站目录_网站网址收录与提交入口

$url=$public_r['newsurl'].’search';vfP网站目录_网站网址收录与提交入口

$snum=2;//最小页数vfP网站目录_网站网址收录与提交入口

$totalpage=ceil($num/$line);//取得总页数vfP网站目录_网站网址收录与提交入口

$firststr='<a title=”‘.$fun_r['trecord'].'”> ’.$num.’   ';vfP网站目录_网站网址收录与提交入口

//上一页vfP网站目录_网站网址收录与提交入口

if($page<>0)vfP网站目录_网站网址收录与提交入口

{vfP网站目录_网站网址收录与提交入口

$toppage='’.$fun_r['startpage'].' ';vfP网站目录_网站网址收录与提交入口

$pagepr=$page-1;vfP网站目录_网站网址收录与提交入口

$prepage='’.$fun_r['pripage'].'';vfP网站目录_网站网址收录与提交入口

}vfP网站目录_网站网址收录与提交入口

//下一页vfP网站目录_网站网址收录与提交入口

if($page!=$totalpage-1)vfP网站目录_网站网址收录与提交入口

{vfP网站目录_网站网址收录与提交入口

$pagenex=$page+1;vfP网站目录_网站网址收录与提交入口

$nextpage=’ ’.$fun_r['nextpage'].'';vfP网站目录_网站网址收录与提交入口

$lastpage=’ ’.$fun_r['lastpage'].'';vfP网站目录_网站网址收录与提交入口

}
$starti=$page-$snum<0?0:$page-$snum;vfP网站目录_网站网址收录与提交入口

$no=0;vfP网站目录_网站网址收录与提交入口

for($i=$starti;$i<$totalpage&&$no<$page_line;$i++)vfP网站目录_网站网址收录与提交入口

{vfP网站目录_网站网址收录与提交入口

$no++;vfP网站目录_网站网址收录与提交入口

if($page==$i)vfP网站目录_网站网址收录与提交入口

{vfP网站目录_网站网址收录与提交入口

$is_1=””;vfP网站目录_网站网址收录与提交入口

$is_2=””;vfP网站目录_网站网址收录与提交入口

}vfP网站目录_网站网址收录与提交入口

elsevfP网站目录_网站网址收录与提交入口

{vfP网站目录_网站网址收录与提交入口

$is_1='';vfP网站目录_网站网址收录与提交入口

$is_2=””;vfP网站目录_网站网址收录与提交入口

}vfP网站目录_网站网址收录与提交入口

$pagenum=$i+1;vfP网站目录_网站网址收录与提交入口

$returnstr.=” ”.$is_1.$pagenum.$is_2;vfP网站目录_网站网址收录与提交入口

}vfP网站目录_网站网址收录与提交入口

$returnstr=$firststr.$toppage.$prepage.$returnstr.$nextpage.$lastpage;vfP网站目录_网站网址收录与提交入口

return $returnstr;vfP网站目录_网站网址收录与提交入口

}vfP网站目录_网站网址收录与提交入口

然后在48行左右找到:vfP网站目录_网站网址收录与提交入口

$listpage=page1($num,$line,$page_line,$start,$page,$search);vfP网站目录_网站网址收录与提交入口

修改为vfP网站目录_网站网址收录与提交入口

$listpage=page10($num,$line,$page_line,$start,$page,$search);vfP网站目录_网站网址收录与提交入口

修改:vfP网站目录_网站网址收录与提交入口

$search=”&searchid=”.$searchid;vfP网站目录_网站网址收录与提交入口

vfP网站目录_网站网址收录与提交入口

$search=”$searchid”;vfP网站目录_网站网址收录与提交入口

三、添加伪静态规则(例子为Apache,自己修改为对应的)vfP网站目录_网站网址收录与提交入口

#搜索vfP网站目录_网站网址收录与提交入口

RewriteRule ^search-(.+?)-(.+?)/.html$ /e/search/result/index/.php/?page=$1&searchid=$2vfP网站目录_网站网址收录与提交入口

四、修改搜索模板中的提交地址为绝对地址:vfP网站目录_网站网址收录与提交入口

比如vfP网站目录_网站网址收录与提交入口

 vfP网站目录_网站网址收录与提交入口

 vfP网站目录_网站网址收录与提交入口

提示:不建议使用相对地址。vfP网站目录_网站网址收录与提交入口

效果图vfP网站目录_网站网址收录与提交入口

上传以下图片:vfP网站目录_网站网址收录与提交入口

 vfP网站目录_网站网址收录与提交入口


vfP网站目录_网站网址收录与提交入口

 vfP网站目录_网站网址收录与提交入口

  

此文由 网站目录_网站网址收录与提交入口 编辑,未经允许不得转载!:

相关文章