clivewalkden/jigsaw-sitemap
Composer 安装命令:
composer require clivewalkden/jigsaw-sitemap
包简介
Sitemap and sitemap index builder for Jigsaw.
README 文档
README
Sitemap and sitemap index builder for Jigsaw.
Usage
Add as an event listener in bootstrap.php.
use CliveWalkden\JigsawSitemap\SitemapListener; /** * An afterBuild event is fired after the build is complete, and all output files * have been written to the build directory. This allows you to obtain a list of * the output file paths (to use, for example, when creating a sitemap.xml file), * programmatically create output files, or take care of any other post-processing tasks. * * @link http://jigsaw.tighten.co/docs/event-listeners/ */ $events->afterBuild([ SitemapListener::class, ]);
Note: You can exclude files from the sitemap by adding the following to your
config.php:
'sitemap' => [ 'url_trailing_slash' => true, 'exclude' => [ '.htaccess', 'favicon.ico', // ... ], 'image_sitemap' => [ 'generate' => true, 'filename' => 'sitemap_images.xml', 'extensions' => [ 'gif', 'jpg', 'jpeg', 'png', // ... ] ] ],
Laravel 6 Updates (Jigsaw 1.3.16+)
Updates to make the plugin work with Laravel 6 components used in Jigsaw 1.3.16+ were made by Clive Walkden. All previous work was done by Ryan Scherler.
Changelog
To see the changelog open CHANGELOG.md
统计信息
- 总下载量: 820
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2021-10-24