|
phpcms v9网站生成sitemap静态地图页面操作步骤
第一步:
后台添加一个菜单,如下填写:
第二步,将以下代码保存为 sitemap.php 文件放到 phpcmsmodulesadminsitemap.php :
复制代码代码如下:
siteid = $this->get_siteid();
$this->categorys = getcache('category_content_'.$this->siteid,'commons');
}
/**
*
* Enter google sitemap] 百度新闻协议
*/
function init() {
$hits_db = pc_base::load_model('hits_model');
$CATEGORYS = $this->categorys;
//读站点缓存
$siteid = $this->siteid;
$sitecache = getcache('sitelist','commons');
//根据当前站点,取得文件存放路径
$systemconfig = pc_base::load_config('system');
$html_root = substr($systemconfig['html_root',, 1);
//判断当前站点目录,是PHPCMS则把文件写到根目录下, 不是则写到分站目录下.(分站目录用由静态文件路经html_root和分站目录dirname组成)
if($siteid==1){
$dir = PHPCMS_PATH;
}else {
$dir = PHPCMS_PATH.$html_root.DIRECTORY_SEPARATOR.$sitecache[$siteid,['dirname',.DIRECTORY_SEPARATOR;
}
//模型缓存
$modelcache = getcache('model','commons');
if(!defined('HTML')) define('HTML',1);
//获取当前站点域名,下面URL时会用到.
$this_domain = substr($sitecache[$siteid,['domain',, 0]strlen($sitecache[$siteid,['domain',)-1);
ob_start();
$file = $dir.'sitemap.html';
include template('content', 'sitemap');
$data = ob_get_contents();
ob_clean();
if(!is_dir($dir)) {
mkdir($dir, 0777,1);
}
file_put_contents($file, $data);
@chmod($file,0777);
showmessage('当前站点网站地址成功!');
}
}
?>
第三步,将以下代码保存为 sitemap.html 文件,放到 phpcmstemplatesdefaultcontentsitemap.html :
复制代码代码如下:
{template 'content','header'}
[url=,首页[/url]网站地图
{loop $CATEGORYS $childid $c}
{php $arrcats = explode(',',$c[arrparentid,);}
{if in_array($catid,$arrcats)}
{if $c['ismenu',==1}
[url={$c},{$c[catname,}
{/if}
{/if}
{/loop}
{/if}
{if $cat['child',==0 and $cat['parentid',==0 and $cat['ismenu',==1}
{$child}[url={$cat},{$cat[catname,}{$parentid}{/if}
{/loop}
{template 'content','footer'} |
|