ut8ia / yii2-sitemap-module
module for sitemap generation
Installs: 17
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
pkg:composer/ut8ia/yii2-sitemap-module
Requires
This package is auto-updated.
Last update: 2025-10-10 23:28:23 UTC
README
working with ut8ia/yii2-content-module
url manager config
'sitemap.xml' =>'sitemap/sitemap/xml'
htaccess
RewriteCond $1 ^sitemap.xml
RewriteRule ^(.*)$ index.php
module section of config
'sitemap' => [
'class' => 'ut8ia\sitemapmodule\SitemapModule',
'baseUrl' => 'https://www.i-wet.net',
'sections' => [
4 => ['prefix' => 'methods'],
5 => ['prefix' => 'quality'],
8 => ['prefix' => 'blog']
],
'rows' => require(__DIR__ . '/sitemap.php')
sitemap config
return [
[
'loc' => 'https://yourhost.net',
'priority' => '0.8',
'changefreq' => 'daily'
],
[
'loc' => 'https://yourhost.net/page',
'priority' => '0.8',
'changefreq' => 'daily'
]