presta/sitemap-bundle

一个提供构建应用站点地图工具的 Symfony 扩展包。

安装量: 6,838,331

依赖: 26

建议者: 2

安全: 0

星标: 350

关注者: 25

分支: 101

公开问题: 16

类型:symfony-bundle

v4.1.1 2024-03-19 15:38 UTC

README

Tests Coverage Latest Stable Version Downloads Monthly Contributors

本扩展包可处理 Symfony 应用程序中的 XML 站点地图。

概览

允许站点索引文件

<?xml version="1.0" encoding="UTF-8"?>
<sitemapindex xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
              xsi:schemaLocation="http://www.sitemaps.org/schemas/sitemap/0.9 http://www.sitemaps.org/schemas/sitemap/0.9/siteindex.xsd"
              xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
    <sitemap>
        <loc>https://acme.org/sitemap.static.xml</loc>
        <lastmod>2020-01-01T10:00:00+02:00</lastmod>
    </sitemap>
</sitemapindex>

和 URL 集合文件

<?xml version="1.0" encoding="UTF-8"?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9" 
        xmlns:xhtml="http://www.w3.org/1999/xhtml">
    <url>
        <loc>https://acme.org/</loc>
        <lastmod>2020-01-01T10:00:00+02:00</lastmod>
        <changefreq>daily</changefreq>
        <priority>0.5</priority>
    </url>
    <url>
        <loc>https://acme.org/contact</loc>
        <lastmod>2020-01-01T10:00:00+02:00</lastmod>
        <changefreq>daily</changefreq>
        <priority>0.5</priority>
    </url>
</urlset>

在专门的 GitHub 仓库 中提供了测试沙箱。

您还可以查看 Prestaconcept 网站的站点地图(也是用此扩展包构建的)。

功能

  • 使用单个选项配置您希望在站点地图中包含的路线
  • 生成一个站点索引和您需要的任意数量的 URL 集合
  • 使用 symfony 控制器实时访问站点地图或将站点地图导出到文件以加快访问速度
  • 符合 URL 集合规范:每个文件 50k 项 / 10MB
  • 使用图片、视频、移动和多语言 URL 装饰您的站点地图
  • 无需数据库

文档

您可以在以下链接中找到详细文档

版本

此扩展包与自 2.3.0 版以来的所有 Symfony 版本兼容。

然而,像 Symfony 一样,我们不提供对已达到 EOL 的 Symfony 版本的支持。

贡献

如果您想帮忙,请随意打开一个 问题pull request

感谢 所有已经做出贡献的人

此项目由 PrestaConcept 支持

MIT 许可证 下发布