天天看點

織夢背景如何生成站點地圖sitemap.xml

第一步在網站根目錄建立sitemap.php檔案

内容如下:

寫一個計劃任務檔案命名為generate_sitemap.php,放在/plus/task目錄裡,檔案内容如下:

<?php//定時生成網站地圖require_once(dirname(__FILE__).'/include/common.inc.php');include(DEDEINC."/arc.listview.class.php");$lv = new ListView();//解析模闆到字元串$lv->PartView = new PartView($lv->TypeID,false);$lv->PartView->SetTypeLink($lv->TypeLink);$lv->PartView->SetTemplet(DEDETEMPLATE.'/2012/sitemap.xml');$html = $lv->PartView->GetResult();file_put_contents('./sitemap.xml',$html);?>

第二步建立sitemap.xml檔案

首先在模闆目錄(網站目錄/templets/default/sitemap.xml)放一個sitemap.xml的模闆檔案。内容如下:

<?xml version="1.0" encoding="UTF-8"?><urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"><url>    <loc>/</loc>    <lastmod>{dede:arclist row=1 titlelen=24 orderby=pubdate}    [field:pubdate function=strftime('%Y-%m-%d',@me)/]    {/dede:arclist}</lastmod>    <changefreq>daily</changefreq>    <priority>1.0</priority></url>{dede:channel row='10' type='top'}<url><loc>[field:typelink /]</loc><changefreq>daily</changefreq><priority>0.8</priority></url>{/dede:channel}{dede:arclist row=2000 orderby=pubdate}<url>    <loc>[field:arcurl/]</loc>    <lastmod>[field:pubdate function=strftime('%Y-%m-%d',@me)/]</lastmod>    <changefreq>monthly</changefreq></url>{/dede:arclist}</urlset>

第三步生成xml檔案

如圖所示:

織夢背景如何生成站點地圖sitemap.xml

此時,你網站根目錄下會産生一個sitemap.xml檔案,此時可以通路:域名/sitemap.xml.

 OK! 定時生成網站地圖(sitemap.xml)功能結束,你可以在百度站長平台裡送出這個網站地圖檔案,百度robot會更喜歡你的網站!

轉載于:https://www.cnblogs.com/fkcqwq/p/6994036.html

php