一、評論模塊偽靜態(tài)設(shè)置
1、首先在后臺->擴展->url規(guī)則里添加一個新的規(guī)則用于評論模塊,如下面所示:
{$commentid}_{$page}.html
添加完成后記住前面的id號,比如31。
2、本來pc標簽支持urlrule呢,后來不支持了,只好改代碼了,于是打開文件phpcms/modules/comment/index.php找到:
include template('comment', 'list');
在它上面添加幾行用于讀取urlrule和從評論表中調(diào)用評論數(shù)據(jù),對了,評論表是帶分表的。
$page = intval($_get['page']);
$page = max($page,1);
$urlrules = getcache('urlrules','commons');
$urlrule = $urlrules[31];//調(diào)用url規(guī)則
$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標簽,只留下循環(huán)那里就可以了, 就是把那個調(diào)用評論數(shù)據(jù)的標簽改改, 刪掉這個文件phpcmstemplatesdefaultcommentlist.html里的:
{pc:comment action=lists commentid=$commentid siteid=$siteid page=$_get[page] hot=$hot num=20}
和它對應(yīng)的那個:
{/pc}
然后把循環(huán)語句:
{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,現(xiàn)在就大功告成了,顯示出來的網(wǎng)址是:
/content_9-1-1_2.html
二、tag模塊偽靜態(tài)設(shè)置
1、在后臺->擴展->url規(guī)則里添加一個新的規(guī)則用于評論模塊,如下面所示:
{$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];//調(diào)用url規(guī)則
$datas = $infos = array();
$infos = $this->db->listinfo(`keywords` like '%$tag%','id desc',$page,25,'','9',$urlrule,array('catid'=>$catid,'tag'=>urlencode($tag)));
3、修改模板,打開phpcmstemplatesdefaultcontentshow.html,找到:
{app_path}index.php?m=content&c=tag&catid={$catid}&tag={urlencode($keyword)}
改成:
{app_path}{urlencode($keyword)}_{$catid}_1.html
打開phpcmstemplatesdefaultcontenttag.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樣式如下:
/關(guān)鍵詞_6_1.html
小結(jié):其實以上的修改都是在listinfo支持偽靜態(tài)規(guī)則的基礎(chǔ)上來修改的,熟練使用listinfo,就能在phpcms的任何頁面實現(xiàn)偽靜態(tài)分頁了。