svc/sitemap-bundle
Composer 安装命令:
composer require svc/sitemap-bundle
包简介
Bundle to create easy XML sitemaps and robots.txt files
README 文档
README
This bundle creates easy XML sitemaps and robots.txt files in a Symfony application
Features
- ✅ XML Sitemap Generation with full support for lastmod, changefreq, and priority
- ✅ PHP Attributes Support - Modern
#[Sitemap]and#[Robots]attributes for type-safe configuration (PHP 8+) - ✅ Multi-language Support with hreflang alternate URLs
- ✅ robots.txt Generation with optional sitemap reference
- ✅ Static & Dynamic Routes via event system
- ✅ Security Validation - Prevents XSS (javascript:, data: schemes blocked)
- ✅ UTF-8 Validation - Ensures all content is valid UTF-8
- ✅ Size Limits - Automatic validation (50,000 URLs / 50MB per sitemap)
- ✅ Console Commands for easy generation
- ✅ GZIP Support for compressed sitemaps
Short examples
sitemap.xml
<?xml version="1.0" encoding="utf-8"?> <urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9" 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/sitemap.xsd" xmlns:xhtml="http://www.w3.org/1999/xhtml"> <url> <loc>https://shorter.li/svc-contactform/de/contact/</loc> <lastmod>2024-12-09T15:07:58+01:00</lastmod> <changefreq>weekly</changefreq> <priority>0.2</priority> <xhtml:link rel="alternate" hreflang="de" href="https://shorter.li/svc-contactform/de/contact/"/> <xhtml:link rel="alternate" hreflang="en" href="https://shorter.li/svc-contactform/en/contact/"/> </url> <url> <loc>https://shorter.li/de/</loc> <lastmod>2024-12-09T15:07:58+01:00</lastmod> <changefreq>weekly</changefreq> <priority>1.0</priority> <xhtml:link rel="alternate" hreflang="de" href="https://shorter.li/de/"/> <xhtml:link rel="alternate" hreflang="en" href="https://shorter.li/en/"/> </url> <url> <loc>https://shorter.li/login/de</loc> <lastmod>2024-12-09T15:07:58+01:00</lastmod> <changefreq>weekly</changefreq> <priority>0.1</priority> <xhtml:link rel="alternate" hreflang="de" href="https://shorter.li/login/de"/> <xhtml:link rel="alternate" hreflang="en" href="https://shorter.li/login/en"/> </url> </urlset>
robots.txt
User-agent: google
Allow: /
Allow: /de/
Allow: /en/
Allow: /public
Disallow: /admin
User-agent: bing
Allow: /
Disallow: /de/
Disallow: /en/
Disallow: /admin
User-agent: *
Disallow: /
Sitemap: https://example.com/sitemap.xml
Documentation
Sitemap
Robots.txt
Note
Many thanks to the creators of the PrestaSitemapBundle. From there I got many ideas and sometimes also some code...
svc/sitemap-bundle 适用场景与选型建议
svc/sitemap-bundle 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 235 次下载、GitHub Stars 达 1, 最近一次更新时间为 2024 年 11 月 29 日, 在 PHP 生态内属于活跃度较高的组件。
我们在过去多个企业项目中使用过 svc/sitemap-bundle 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 svc/sitemap-bundle 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
统计信息
- 总下载量: 235
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 1
- 点击次数: 12
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2024-11-29