赞
踩
织梦火车头采集器采集相同标题改成更新内容,不再发布相同文档,防止重复。
普通文章实现方法
1、打开 /dede/article_add.php 找到
require_once(DEDEINC.'/image.func.php');
在它上面加入
- $arcrow = $dsql->GetOne("SELECT * FROM `dede_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']}");
2、打开火车头发布模块,修改成功标志码
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。