zrk4939/

seo-module

SEO模块

安装: 100

依赖项: 0

建议者: 0

安全: 0

星标: 0

关注者: 1

分支: 0

开放问题: 0

类型:yii2-extension

1.1.10 2023-03-27 09:14 UTC

This package is auto-updated.

Last update: 2024-09-27 12:06:51 UTC


README

...
'bootstrap' => ['seo'],
...
'modules' => [
    ...
    'seo' => [
        'class' => 'zrk4939\modules\seo\SeoModule',
    ],
    ...
],

迁移

php yii migrate --migrationPath=@vendor/zrk4939/seo-module/migrations --interactive=0

布局

<head>
    <meta charset="<?= Yii::$app->charset ?>">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <?= Html::csrfMetaTags() ?>

    <?= \zrk4939\modules\seo\widgets\MetaWidget::widget() ?>

    <title><?= Html::encode($this->title) ?></title>
    <?php $this->head() ?>
</head>