.htaccess - 仅重定向来自特定 IP 的请求
我相信有人正在从我的网站上抓取图像。所以我想做的是,根据他们的特定 IP 地址,提供某种持有图像而不是实际图像。
如何使用 .htaccess 实现此目的?
I believe someone is scraping images from my site. So what I want to do is, based on their specific IP address, serve up some kind of holding image instead of the actual image.
How do I achieve this using .htaccess?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试这个 mod_rewrite 规则:
此规则会将来自 IP 地址 12.34.56.78 的任何非
/images/foobar.png
内部请求重写为/images/foobar.png
。Try this mod_rewrite rule:
This rule will rewrite any request from the IP address 12.34.56.78 that is not
/images/foobar.png
internally to/images/foobar.png
.