enlitepro/enlite-sitemap
Composer 安装命令:
composer require enlitepro/enlite-sitemap
包简介
The ZF2 module for generation static site map
README 文档
README
INSTALL
The recommended way to install is through composer.
{
"require": {
"enlitepro/enlite-sitemap": "1.0.*"
}
}
USAGE
Add EnliteSitemap to your config/application.config.php to enable module.
Static urls you can added to the navigation in section "sitemap".
For dynamic urls you need:
- Add implementation EnliteSitemap\Navigation\DynamicPagesInterface to any service. This service must be available for get with help the service locator.
- Add a key of the service to
[
'EnliteSitemap' => [
'common' => [
'dynamic_pages' => [
'YouService'
],
],
],
]
Configure
For example config:
[
'EnliteSitemap' => [
'common' => [
// The name site map or site map index (if some files)
'index_file' => 'sitemap.xml',
// The name of site map. Use when a site map is some files
'non_index_file' => 'sitemap%d.xml',
'public_path' => 'public',
'limit_url_in_file' => 50000,
'dynamic_pages' => [],
],
// URL for all links in site map
'url' => [
'host' => 'my.site.com',
'port' => 80,
'scheme' => 'http',
]
],
]
Notice
For create Zend\Navigation\Page\Mvc, we recommend use EnliteSitemap\Service\SitemapService::factoryMVCPage()
统计信息
- 总下载量: 46
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 1
- 点击次数: 4
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: Unknown
- 更新时间: 2013-12-03