織夢(mèng)(dedecms)全站動(dòng)態(tài)瀏覽實(shí)現(xiàn)方法 |
發(fā)布時(shí)間: 2012/8/28 18:57:59 |
織夢(mèng)(dedecms)全站動(dòng)態(tài)瀏覽實(shí)現(xiàn)方法具體步驟如下:
1,首頁動(dòng)態(tài)化
我們只要把網(wǎng)站根目錄下面生成的index.html刪除,然后把index.php里面的代碼修改成下面的代碼:
<?php if(!file_exists(dirname(__FILE__).'/data/common.inc.php')) { header('Location:install/index.php'); exit(); } require_once (dirname(__FILE__) . "/include/common.inc.php"); require_once DEDEINC."/arc.partview.class.php"; $GLOBALS['_arclistEnv'] = 'index'; $row = $dsql->GetOne("Select * From `dede_homepageset`"); $row['templet'] = MfTemplet($row['templet']); $pv = new PartView(); $pv->SetTemplet($cfg_basedir . $cfg_templets_dir . "/" . $row['templet']); $pv->Display(); ?> 如果想實(shí)現(xiàn)首頁動(dòng)態(tài)效果以后就不能再在后臺(tái)更新網(wǎng)站了,因?yàn)楦潞笫醉撚肿兂伸o態(tài)的了。
2,將織夢(mèng)所有欄目設(shè)置為“使用動(dòng)態(tài)頁”,可以再建立欄目時(shí)選擇“使用動(dòng)態(tài)頁”;
也可以執(zhí)行下面的SQL語句。
update dede_arctype set isdefault=-1
3,將網(wǎng)站所有文檔都設(shè)置為“僅動(dòng)態(tài)”
執(zhí)行SQL語句:update dede_archives set ismake=-1
就可以解決織夢(mèng)全站動(dòng)態(tài)瀏覽。
如果是全站所有文章為動(dòng)態(tài) 執(zhí)行SQL: update dede_archives set ismake=-1 如果全站為靜態(tài) 執(zhí)行SQL: update dede_archives set ismake=0 假如要ID =10 的欄目?jī)?nèi) 所有文章生成動(dòng)態(tài),其它全部為靜態(tài) 執(zhí)行SQL: update dede_archives set ismake=-1 where typeid=10 本文出自:億恩科技【1tcdy.com】 服務(wù)器租用/服務(wù)器托管中國(guó)五強(qiáng)!虛擬主機(jī)域名注冊(cè)頂級(jí)提供商!15年品質(zhì)保障!--億恩科技[ENKJ.COM] |