帝國(guó)CMS的信息是綁定內(nèi)容模板的,通過本教程可以實(shí)現(xiàn),在前臺(tái)自由使用不同的模板,比如在網(wǎng)站首頁,兩處添加同一條信息鏈接,但不同的同容模板
打開 /e/action/ShowInfo.php 文件
查找:
$r[newstempid]=$r[newstempid]?$r[newstempid]:$class_r[$r[classid]][newstempid];
替換成:
$nrid=(int)$_GET['nrid'];
if($nrid)
{
$r[newstempid]=$nrid;
}
else
{
$r[newstempid]=$r[newstempid]?$r[newstempid]:$class_r[$r[classid]][newstempid];
}
使用的時(shí)候在信息地址后面加&nrid=模板id就行了
例如:http://127.0.0.1/dg2/e/action/ShowInfo.php?classid=34&id=583&nrid=2
以上的方法缺點(diǎn):只能在內(nèi)容頁鏈接是動(dòng)態(tài)鏈接時(shí)才能使用上面的“&nrid=模板id”(即:只有內(nèi)容頁鏈接是動(dòng)態(tài)鏈接時(shí),“&nrid=模板id”才起作用),
反之,直接使用 如:http://127.0.0.1/dg2/e/action/ShowInfo.php?classid=34&id=583&nrid=2 這樣的動(dòng)態(tài)鏈接時(shí),會(huì)直接跳轉(zhuǎn)到已生成靜態(tài)頁面去