火车头采集器采集相同标题不再发布
发布时间:2021-04-30 | 发布者: | 浏览次数: 次
织梦火车头采集器采集相同标题改成更新内容,不再发布相同文档,防止重复。
普通文章实现方法
1、打开 /dede/article_add.php 找到
require_once(dedeinc.'/image.func.php');
在它上面加入
$arcrow = $dsql->getone("select * from `archives` where title='$title'");
$aid = $arcrow['id'];if(is_array($arcrow))
{
header("http/1.1 307 moved permanently");
header("location:article_edit.php?aid={$aid}&id={$aid}"); exit();
}
如果要保留文档原来的自定义属性或者其他字段的值,可以修改上面的header,例如自定义属性的话这样写 header("location:article_edit.php?aid={$aid}&id={$aid}&flags[]={$arcrow['flag']}");
完成。
转载请标注:——
上一篇:
下一篇: