Apache 禁止指定user_agent---模块
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Apache 禁止指定user_agent---模块相关的知识,希望对你有一定的参考价值。
1.编辑虚拟主机文件
vim /usr/local/apache2/conf/extra/httpd-vhosts.conf
编辑<IfModule mod_rewrite.c> 模块,在底部加入:
RewriteCond %{HTTP_USER_AGENT} ^.*curl.* [NC,OR]
RewriteCond %{HTTP_USER_AGENT} ^.*chrome* [NC]
RewriteRule .* - [F]
----禁止带curl或者chrome标识的访问网站
以上是关于Apache 禁止指定user_agent---模块的主要内容,如果未能解决你的问题,请参考以下文章