dedecms如何生成google地图

 

 

在default目录下新建一个txt文本文件,将下面的代码复制到文本中,然后将域名改成自己的域名,最后保存成Sitemap.xml文件(注意Sitemap的s要大写)

<?xml version="1.0" encoding="utf-8"?> 

 <urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"> 

    <url> 

      <loc>www.dynwt.com</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></priority> 

    </url>

 

 {dede:channel row=20 type=top} 

   <url> 

     <loc>www.dynwt.com[field:typelink /]</loc> 

     <changefreq>daily</changefreq> 

     <priority>0.8</priority> 

   </url> 

 {/dede:channel}

 

 {dede:arclist row=2000 orderby=pubdate} 

   <url> 

     <loc>www.dynwt.com[field:arcurl/]</loc>

     <lastmod>[field:pubdate function=strftime('%Y-%m-%d',@me)/]</lastmod> 

 <changefreq>monthly</changefreq> 

 </url> 

 {/dede:arclist} 

</urlset>

 

你可能感兴趣的:(dedecms)