首页 > 代码库 > Apache 配置禁止指定的 user_agent
Apache 配置禁止指定的 user_agent
User-Agent(浏览器类型),即不让哪些浏览器来访问我们的网站
[root@localhost ~]# vim /usr/local/apache2/conf/extra/httpd-vhosts.conf<VirtualHost *:80> DocumentRoot "/data/www" ServerName www.test.com ErrorLog "logs/test.com_error_log" CustomLog "logs/test.com_access_log" combined <IfModule mod_rewrite.c> RewriteEngine on RewriteCond %{HTTP_USER_AGENT} ^.*curl.* [NC,OR] # 如果要禁止多种浏览器要在后面加[OR],表示或者 RewriteCond %{HTTP_USER_AGENT} ^.*chrome.* [NC] # 这里禁止 curl 和 chrome 访问我们的网站(只是做实验) RewriteRule .* - [F] # 表示 Forbidden </IfModule></VirtualHost>
[root@localhost ~]# /usr/local/apache2/bin/apachectl -t[root@localhost ~]# /usr/local/apache2/bin/apachectl graceful
[root@localhost ~]# curl www.test.com<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN"><html><head><title>403 Forbidden</title> # 禁止后访问结果为403</head><body><h1>Forbidden</h1><p>You don‘t have permission to access /on this server.</p></body></html>
Apache 配置禁止指定的 user_agent
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。