蚂蚁商户发布文章、商品是可以添加外链或者直接用外部图片,但是这对分类网站运营不利。 所以要对外链进行过滤,演示网站,蚂蚁分类的源码。
下面就说下怎么处理自动给外链自动加上nofollow属性。
1、添加过滤外链函数
打开/include/global.php 添加处理函数
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15function
tsnofollow(
$co暨南大学招生简章ntent
,
$domain
=
"https://www.0516fangchan.com"
){
preg_match_all(
'/href="(.*?)"/'
,
$content
,
$matches
肠胃炎最佳治疗方法 );
if
(
$matches
){
foreach
(
$matches
[1]
as
$val
){
if
(
strpos
(
$val
,
$补角的定义domain
)===fal)
$content
=
str_replace
(
'href="'
.
$val
.
'"'
,
'href="'
.
$val
.
'"rel="externalnofollow"古诗村居的意思'
,
$content
);
}
}
preg_match_all(
'/src="(.*?)"/'
,
$content
,
$matches
);
if
(
$matches
){
foreach
(
$matches
[1]
as
$val
){
if
(
strpos
(
$val
,
$domain
)===fal)
$content
=
str_replace
(
'src="'
.
$val
.
'"'
,
'src="'
.
$val
.
'"rel="externalnofollow"'
,
$content
);
}
龙的传人串词
}
return
$content
;
}
*$domain 是不用过滤的域名,全部过滤就不用给默认值
2、发布文章调用处理函数
打开/member/include/inc_document.php查找$content = ist($_post[‘content’])在后面添加
1$content
=addnofollow(
stripslashes
(
$content
));
*注意必须要加stripslashes先处理文章的转义字符
这样就处理完毕了,商品也是类似处理。
本文发布于:2023-04-07 05:36:12,感谢您对本站的认可!
本文链接:https://www.wtabcd.cn/fanwen/zuowen/7e176305d15a2dc4035f1c08a56c178e.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文word下载地址:蚂蚁分类信息商家发布文章、商品外链及远程图片自动添加nofollow属性.doc
本文 PDF 下载地址:蚂蚁分类信息商家发布文章、商品外链及远程图片自动添加nofollow属性.pdf
留言与评论(共有 0 条评论) |