先在mysql中执行
INSERT INTO `g2ex_setting` (`id`, `sortid`, `block`, `label`, `type`, `key`, `value_type`, `value`, `option`, `description`) VALUES (NULL, '2', 'info', '网站关键字', 'textarea', 'keywords', 'text', '', '', '');
需要注意的是g2ex_setting
需要改为你相应的数据表,没有改过前辍的,就用这个就可以。
(必须,要是为空,新代码加上去会出错,)
在管理->基本设置->网站关键字
填入你网站的主要关键词。
电脑\core\themes\g2ex\layouts\main.php
和手机版\core\themes\mobile\layouts\main.php
中合适的位置加上如下代码:
<!--网站描述和关键字,首页有效-->
<?php
if(\Yii::$app->controller->id=='topic' && \Yii::$app->controller->action->id=='index'){?>
<meta name="description" content="<?=$settings['description']?>">
<meta name="keywords" content="<?=$settings['keywords']?>">
<?php } ?>