enchikiben/yii2-sitemap Yii2 generation Sitemap XML

yii2-sitemap

  1. Installation
  2. Configure
  3. Use

Installation

The preferred way to install this extension is through composer.

php composer.phar require --prefer-dist "enchikiben/yii2-sitemap" "*"

or

"enchikiben/yii2-sitemap" : "*"

Configure

'modules' => [
    'sitemap' => [
        'class' => 'enchikiben\sitemap\Sitemap',
        'controllerDirAlias' => '@frontend/controllers'
    ],
],

Add a new rule for urlManager of your application's configuration file, for example:

'urlManager' => [
    'rules' => [
        ['pattern' => 'sitemap', 'route' => 'sitemap/default/index', 'suffix' => '.xml'],
    ],
],

Use

class SiteController extends Base
{

    /**
     * @sitemap priority=1
     */
    public function actionIndex()
    {
    } 

    /**
     * @sitemap priority=0.8
     */
    public function actionConfidentiality()
    {
    }
}

or

class NewsController extends Base
{
    /**
     * @sitemap priority=0.5 changefreq=monthly route=['/news/view','id'=>$model->id] model=common\models\News condition=['status'=>1]
     */
    public function actionView($id)
    {
        
    }
}
3 0
2 followers
8 889 downloads
Yii Version: 2.0
License: MIT
Category: Others
Developed by: enchikiben
Created on: Feb 21, 2019
Last updated: (not set)
Packagist Profile
Github Repository

Related Extensions