最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

plugins - how to protect Wordpress RSS Feed from "Feed Fetcher"

programmeradmin2浏览0评论

how to protect Wordpress RSS Feed from "Feed Fetcher" ? there is a plugin "disable Feed for wordpress but in want rss feed for seo. wat can i do to protect RSS FEED from copying without IP BANNING in HTACCESS cause there is lots of FEED FETCHER website!

how to protect Wordpress RSS Feed from "Feed Fetcher" ? there is a plugin "disable Feed for wordpress but in want rss feed for seo. wat can i do to protect RSS FEED from copying without IP BANNING in HTACCESS cause there is lots of FEED FETCHER website!

Share Improve this question asked Dec 7, 2019 at 21:08 adam skadam sk 93 bronze badges 1
  • Welcome to WordPress Development. I hope you find the answer(s) you are looking for. Our site is different from most - if you have not done so yet, consider checking out the tour and help center to find out how things work. – Matthew Brown aka Lord Matt Commented Dec 8, 2019 at 12:08
Add a comment  | 

1 Answer 1

Reset to default 0

You'll need to look in your logs to find what User-Agent string Feed Fetcher is using, and then you can block it using that, e.g.

SetEnvIfNoCase User-Agent "Firefox/70.0" blockua
Deny from env=blockua

By adding the above to my .htaccess file, I was able to block the Firefox (version 70.0) but Chrome still had access.

Obviously, you need to change the string "Firefox/70.0" to whatever the Feed Fetcher user-agent string is, and most likely you don't want the entire string, but just a part that look unique to that piece of software and won't accidentally block something else.

发布评论

评论列表(0)

  1. 暂无评论