PHPCMS V9教程:实现tag、评论模块伪静态

  一、评论模块伪静态配置

  1、首先在靠山->扩展->url法则里添加一个新的法则用于评论模块,如下面所示:

{$commentid}_{$page}.html

  添加完成跋文住前面的id号,好比31。

  2、原来PC标签支持urlrule呢,厥后不支持了,只好改代码了,于是打开文件phpcms/modules/comment/index.php找到:

include template('comment', 'list');

  在它上面添加几行用于读取urlrule和从评论表中挪用评论数据,对了,评论表是带分表的。

$page = intval($_GET['page']);
$page = max($page,1);
$urlrules = getcache('urlrules','commons');
$urlrule = $urlrules[31];//挪用url法则
$pagesize = 10; //分页巨细
$comment_db = pc_base::load_model('comment_model');
$comment_data_db = pc_base::load_model('comment_data_model');
$comment = $comment_db->get_one(array('commentid'=>$commentid, 'siteid'=>$siteid));
if ($comment){
$comment_data_db->table_name($comment['tableid']);
$comment_info = $comment_data_db->listinfo(Array('commentid'=>$commentid,'status'=>1) , 'id desc', $page ,$pagesize,'','10',$urlrule,Array('commentid'=>$commentid));
$pages = $comment_data_db->pages;
}

  3、下面就就改模版了,改模版其实就是改一下谁人pc标签,只留下轮回哪里就可以了, 就是把谁人挪用评论数据的标签改改, 删掉这个文件phpcms\templates\default\comment\list.html里的:

{pc:comment action="lists" commentid="$commentid" siteid="$siteid" page="$_GET[page]" hot="$hot" num="20"}

  和它对应的谁人:

{/pc}

  然后把轮回语句:

{loop $data $r}

  改成:

{loop $comment_info $r}

  把分页标签:

{$pages}

  改成:

{str_replace("_0.html","_1.html",$pages)}

  4、最后在.htaccess文件里插手以下代码:

RewriteRule ^content_(.*)_([0-9]+).html index.php?m=comment&c=index&a=init&commentid=content_$1&page=$2

  ok,此刻就大功告成了,显示出来的网址是:

  /content_9-1-1_2.html

  二、TAG模块伪静态配置

  1、在靠山->扩展->url法则里添加一个新的法则用于评论模块,如下面所示:

{$tag}_{$catid}_{$page}.html

  添加完成跋文住前面的id号,好比32。

  2、打开phpcms/modules/content/tag.php文件,找到:

$total = $this->db->number;

  这一行往上面添加以下代码:

$siteid = $this->categorys[$catid]['siteid'];
$siteurl = siteurl($siteid);
$this->db->set_model($modelid);
$page = $_GET['page'];
$urlrules = getcache('urlrules','commons');
$urlrule = $urlrules[32];//挪用url法则
$datas = $infos = array();
$infos = $this->db->listinfo("`keywords` LIKE '%$tag%'",'id DESC',$page,25,'','9',$urlrule,Array('catid'=>$catid,'tag'=>urlencode($tag)));

  3、修改模板,打开phpcms\templates\default\content\show.html,找到:

{APP_PATH}index.php?m=content&c=tag&catid={$catid}&tag={urlencode($keyword)}

  改成:

{APP_PATH}{urlencode($keyword)}_{$catid}_1.html

  打开phpcms\templates\default\content\tag.html,把分页标签:

{$pages}

  改成:

{str_replace("_0.html","_1.html",$pages)}

  4、在.htaccess文件里插手以下代码:

RewriteRule ^(.*)_([0-9]+)_([0-9]+).html index.php?m=content&c=tag&catid=$2&tag=$1&page=$3

  最后显示出来的URL样式如下:

  /要害词_6_1.html

  小结:其实以上的修改都是在listinfo支持伪静态法则的基本上来修改的,纯熟利用listinfo,就能在phpcms的任何页面实现伪静态分页了。

  原文地点:

PHPCMS v9.6.0 GBK下载

PHPCMS V9教程:实现tag、评论模块伪静态

界面预览

PHPCMS v9.6.0 UTF8下载

PHPCMS V9教程:实现tag、评论模块伪静态

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:http://www.heiqu.com/9831.html