功能:帝國cms網站地圖sitemap制作與自動更新
代碼:
1.增加自定義頁面 =》選擇直接頁面,頁面名稱為:網站地圖,文件名修改為 ../../sitemap.xml
附:自定義頁面內容如下
<?='<?xml version="1.0" encoding="UTF-8"?>'?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
<url>
<loc>http://www.x.com</loc>
<changefreq>always</changefreq>
<priority>1.0</priority>
</url>
[e:loop={"select * from [!db.pre!]enewsclass order by myorder",0,24,0}]
<?
if($bqr['classurl']=='')
{
$sccurl=$public_r['newsurl'].$bqr['classpath']."/";
}
else
{
$sccurl=$bqr['classurl']."/";
}
?>
<url>
<loc>http://www.<SPAN style="FONT-FAMILY: Arial, Helvetica, sans-serif">x</SPAN><SPAN style="FONT-FAMILY: Arial, Helvetica, sans-serif">.com<?=$sccurl?></loc></SPAN>
<lastmod><?=date("Y-m-d")?></lastmod>
<changefreq>always</changefreq>
<priority>0.6</priority>
</url>
[/e:loop]
[e:loop={0,3000,3,0,'','newstime DESC'}]
<url>
<loc>http://www.x.com<?=$bqsr['titleurl']?></loc>
<lastmod><?=date("Y-m-d")?></lastmod>
<changefreq>always</changefreq>
<priority>0.8</priority>
</url>
[/e:loop]
[e:loop={"select * from [!db.pre!]enewstags order by tagid",0,24,0}]
<url>
<loc>http://www.x.com/e/tags/?tagname=<?=$bqr['tagname']?></loc>
<lastmod><?=date("Y-m-d")?></lastmod>
<changefreq>always</changefreq>
<priority>0.5</priority>
</url>
[/e:loop]
[e:loop={'select * from [!db.pre!]enewspage order by id',20,24,0}]
<?php
$pageurl=$public_r['newsurl'].str_replace('../../','',$bqr['path']);
$css='pagecss';
if($classid=='page'.$bqr[id])
{
$css='selfpagecss';
}
?>
<url>
<loc>http://www.x.com<?=$pageurl?></loc>
<lastmod><?=date("Y-m-d")?></lastmod>
<changefreq>always</changefreq>
<priority>0.4</priority>
</url>
[/e:loop]
</urlset>
說明:
http://www.x.com 網址修改成自己網站的域名。
[e:loop={0,3000,3,0,'','newstime DESC'}] 所有文章。3000為文章數量,更具自己網站的需求改。
[e:loop={"select * from [!db.pre!]enewstags order by tagid",0,24,0}] 調取tags里所有信息。
2.設置自動更新:系統 =》計劃任務 =》 管理計劃任務 =》 刷新自定義頁面 =》
當然我們也可以手動刷新生成自定義頁面