用PHP动态站点地图

时间:2018-10-03 04:29:56

标签: php sitemap

如何用php制作站点地图索引,我需要生成动态的站点地图索引,我有很多帖子,但是不知道从哪里开始。

输出应该是这样的

<sitemapindex xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
    <sitemap>
         <loc>https://www.example.com/sitemap.php?from=50000</loc>
        <lastmod>2018-10-03</lastmod>
    </sitemap>
    <sitemap>
         <loc>https://www.example.com/sitemap.php?from=10000</loc>
        <lastmod>2018-10-03</lastmod>
    </sitemap>
..........
</sitemapindex>

站点地图将限制为50.000个帖子,因此https://www.example.com/sitemap.php?from=50000会将结果从50.000最多增加到100.000,但是无论如何,只要我知道帖子数量,并且每个站点地图的帖子限制为50000。

0 个答案:

没有答案