作者 lyh
... ... @@ -160,6 +160,7 @@ class DomainInfo extends Command
"domain" => $param['domain'],
"rewrite" => $extend_config ?? [],
'other_domain' => [$top_domain, '*.' . $top_domain],
'is_https' => $param['is_https'],
'private_key' => '',
'cert' => ''
];
... ...
... ... @@ -472,7 +472,7 @@ class RankDataLogic extends BaseLogic
}
//关键词达标天数
if($model->updated_date != date('Y-m-d')){
if($model->updated_date != date('Y-m-d') || empty($model->is_compliance)){
//保证关键词数
$keyword_num = DeployBuild::where('project_id', $project_id)->value('keyword_num');
$type = Project::where('id', $project_id)->value('type');
... ...