yeesoft/yii2-yee-seo

SEO Module For Yee CMS

0.1.0 2017-03-01 11:23 UTC

This package is auto-updated.

Last update: 2022-03-29 00:26:34 UTC


README

##Yee CMS - Search Engine Optimization Module

####Backend module for managing translations

This module is part of Yee CMS (based on Yii2 Framework).

SEO module lets you easily create and manage search engine optimization records on your site. The module also helps you easily generate sitemap.xml file.

Installation

  • Either run
composer require --prefer-dist yeesoft/yii2-yee-seo "~0.1.0"

or add

"yeesoft/yii2-yee-seo": "~0.1.0"

to the require section of your composer.json file.

  • Run migrations
yii migrate --migrationPath=@vendor/yeesoft/yii2-yee-seo/migrations/

Configuration

  • In your backend config file
'modules' => [
	'seo' => [
		'class' => 'yeesoft\page\SeoModule',
	],
],
  • In your frontend config file
'components' => [
	'seo' => [
		'class' => 'yeesoft\seo\components\Seo',
	],
],

Sitemap configuration

Note! For multilingual sites links will be generate for all languages.

  • In your frontend config file
'components' => [
	'sitemap' => [
		'class' => 'yeesoft\seo\components\Sitemap',
		'links' => [//list of links
        		['loc' => ['/site/index'], 'priority' => '1'],
        		['loc' => ['/blog/index']],
    		],
    		'models' => [//list of links generated using models
        		[
            			'items' => function () {
                			return yeesoft\post\models\Post::find()->where(['status' => 1])->all();
		    		},
            			'loc' => function ($model) {
                			return ['/site/index', 'slug' => $model->slug];
            			},
            			'lastmod' => function ($model) {
                			return $model->updated_at;
            			},
        		],
		],
	],
],
  • Add action to SiteController (or another controller)
public function actions()
{
	return [
		'sitemap' => [
			'class' => 'yeesoft\seo\actions\SitemapAction',
		],
	];
}
  • Add frontend routes for sitemap
'components' => [
	'urlManager' => [
		...
		'rules' => [
			...
        		'sitemap.xml' => 'site/sitemap',
    		],
	],
],