user_agent称为浏览器标识,目前主流的浏览器有 IE、chrome、Firefox、360、iphone上的Safari、Android手机上的百度搜索引擎、google搜索引擎等很多,每一种浏览器都有对应的 user_agent,下面几个user_agent:
Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Trident/4.0; .NET4.0C; .NET4.0E; SE2.x);
Mozilla/5.0 (Windows NT 5.1;AppleWebKit/537.36 (KHTML, like Gecko);Chrome/31.0.1650.63 Safari/537.36;)
Mozilla/5.0 (compatible;Baiduspider/2.0;+http://www.baidu.com/search/spider.html;
Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; .NET4.0C; .NET4.0E;Media Center PC6.0; InfoPath.3;360SE)
应用举例
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteCond %{HTTP_USER_AGENT} ^.*Mozilla.* [NC,OR]
RewriteCond %{HTTP_USER_AGENT} ^.*curl.* [NC]
RewriteRule .* - [F]
</IfModule>
[NC]:表示不区分大小写
[OR]:表示或者
[F]:表示禁止访问
本文出自 “hiyang” 博客,请务必保留此出处http://hiyang.blog.51cto.com/10728919/1786219
原文地址:http://hiyang.blog.51cto.com/10728919/1786219