ecshop是一個很不錯的網(wǎng)店系統(tǒng),現(xiàn)在很多公司都在用它,它本身優(yōu)化也很好,不過因為是網(wǎng)店,很多東西都是動態(tài)的,所以,對優(yōu)化來說,不怎么好,不過慶幸的是它可以偽靜態(tài)。并且有兩種重寫方法,在后臺的商店設(shè)置中,可以選擇簡單重寫和復雜重寫。
偽靜態(tài)已經(jīng)基本上可以滿足大部分人的需求,如果不滿足的還可以根據(jù)前面的一篇文章對重寫規(guī)則進行修改,以滿足自己的需求。
但是本文所要描述的是,根據(jù)ECSHOP內(nèi)在的一些代碼,我們生成純靜態(tài)的網(wǎng)頁,使系統(tǒng)更好的優(yōu)化。
在這里,我們先對首頁進行純靜態(tài)生成。
ECSHOP是一套很好的PHP開源商城系統(tǒng),但開源產(chǎn)品總是無法符合各個項目的細節(jié)需求。負責人要求每個頻道頁都靜態(tài)化,以更好的收錄,那我就知道利用dedecms建設(shè)一系列的封面模板,然后手動去控制產(chǎn)品的縮略圖,至于產(chǎn)品列表頁,暫時還沒靜態(tài)化,還在考慮怎么靜態(tài)化比較好,而商城產(chǎn)品內(nèi)頁靜態(tài)化則使用以下代碼。
Php代碼
if(file_exists($htmlfile) && (!$updatehtml)){
header("HTTP/1.1 301 Moved Permanently");
header("Location: {$htmlfile}");
}else{
$htmlcontent = $smarty->make_html("goods.dwt",$cache_id);
if(file_put_contents($htmlfile,$htmlcontent)){
header("HTTP/1.1 301 Moved Permanently");
header("Location: {$htmlfile}");
}
}
if(file_exists($htmlfile) && (!$updatehtml)){ header("HTTP/1.1 301 Moved Permanently"); header("Location: {$htmlfile}"); }else{ $htmlcontent = $smarty->make_html("goods.dwt",$cache_id); if(file_put_contents($htmlfile,$htmlcontent)){ header("HTTP/1.1 301 Moved Permanently"); header("Location: {$htmlfile}"); } }
301轉(zhuǎn)向是否能夠?qū)⑹珍浀牡刂犯淖儯@個經(jīng)過實驗是可以的,大家可以site一下我的商城就知道。其實這個靜態(tài)化方法,我的靈感也是來源于supersite,這套開源系統(tǒng)也是經(jīng)過動態(tài)跳轉(zhuǎn)到靜態(tài)化,收錄還不差,所以就模仿著寫。
1.在首頁中,$smarty->display('index.dwt', $cache_id);有這一句,說明是把網(wǎng)頁顯示出來,現(xiàn)在我們把它改成如下代碼(參看注釋)
$file = 'index.html';//靜態(tài)網(wǎng)頁文件名
$content = $smarty->make_html('index.dwt');//根據(jù)index.dwt模板生成網(wǎng)頁內(nèi)容
$filename = ROOT_PATH . $file;//靜態(tài)網(wǎng)頁路徑
file_put_contents($filename, $content);//生成文件
echo $content;//輸出到頁面
這幾句放在if (!$smarty->is_cached('index.dwt', $cache_id))判斷中這樣可以利用原有的判斷來決定是不是重新生成靜態(tài)頁面(不過測試了下是一直重新生成的 這個問題有待繼續(xù)研究)
//在判斷外加上
//echo file_get_contents(ROOT_PATH . 'index.html');//輸出靜態(tài)頁面
以上幾條簡單的語句,我們就可以生成首頁的靜態(tài)網(wǎng)頁。同理,我們可以生成產(chǎn)品類別和產(chǎn)品的靜態(tài)網(wǎng)頁,整個系統(tǒng)的靜態(tài)化就完成了。
首頁靜態(tài)頁面生成后,我們接下來要生成的是產(chǎn)品類別的靜態(tài)頁面,我的想法是把產(chǎn)品類別頁面保存在跟目錄下,這樣雖然會比較亂,
但是比較適合優(yōu)化,因為一般搜索引擎抓取的時候只抓取二到三層。把產(chǎn)品類別放在根目錄,體現(xiàn)產(chǎn)品類別的重要性,易于搜索引擎的
抓取,另外一方面,我們可以把產(chǎn)品放在下個目錄中。
類似代碼:
$filename = build_uri('category', array('cid' => $catinfo['cat_id']));//構(gòu)造路徑,這個可以選擇自己喜歡的構(gòu)造方法
$content = $GLOBALS['smarty']->make_html('category.dwt');//產(chǎn)生靜態(tài)頁面內(nèi)容
$filename = ROOT_PATH . $filename;//生成文件路徑,在根目錄下
file_put_contents($filename, $content);//輸出
產(chǎn)品的靜態(tài)頁面代碼:
$goodinfo = get_all_goodsinfo($goods_id);
$cat_name = $goodinfo['cat_name'];
$goodsfile = build_uri('goods', array('gid' => $goods_id));
$content = $GLOBALS['smarty']->make_html('goods.dwt');
$html_tempdir = (ROOT_PATH.$cat_name.'/');
if (!is_dir($html_tempdir))//生成產(chǎn)品目錄
{
mkdir($html_tempdir);
}
$htmlfilename = ROOT_PATH . $goodsfile;
file_put_contents($htmlfilename,$content);
我的是使用類alias.html' target='_blank'>別名稱加下劃線:
function build_uri(........)
................
case 'category':
$cat_name = $GLOBALS['db']->getOne('SELECT cat_name FROM ' . $GLOBALS['ecs']->table('category') . " WHERE cat_id = '$cid'");
$uri = $cat_name . '-' . $cid;
if (!empty($page))
{
$uri .= '-' . $page;
}
........
case 'goods':
$goods_info = $GLOBALS['db']->getRow('SELECT g.goods_name, c.cat_name FROM ' . $GLOBALS['ecs']->table('goods') . " as g left join " .
$GLOBALS['ecs']->table('category') . " as c on c.cat_id = g.cat_id WHERE g.goods_id = '$gid'");
$goods_name = $goods_info['goods_name'];
$cat_name = $cat_name;
$uri = $cat_name . '/' . $goods_name . '-' . $gid ;
..........................
有人問 make_html 這個函數(shù)在那里: 我現(xiàn)在補充如下:
在 includes 下的 cls_template.php 加上
function make_html($filename, $cache_id = '')
{
ob_start();
$this->display($filename,$cache_id);