apache 限制指定user_agent

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了apache 限制指定user_agent相关的知识,希望对你有一定的参考价值。

有些user_agent 不是我们想要的,可以通过rewrite功能针对 %{HTTP_USER_AGENT} 来rewirete到404页,从而达到限制某些user_agent的请求。
配置如下
    <IfModule mod_rewrite.c>
        RewriteEngine on
        RewriteCond %{HTTP_USER_AGENT}  ^.*Firefox/4.0* [NC,OR]
        RewriteCond %{HTTP_USER_AGENT}  ^.*Tomato Bot/1.0* [NC]
        RewriteCond   %{REQUEST_URI} !^/404*
        RewriteRule  .*  /404.html
    </IfModule>
请注意,你的404.html千万别再跳转到其他页面了,否则很有可能就会死循环了。
其实rewrite到404.html 并不是很好的办法,而apache的rewrite功能有一项就是forbidden ,那就是 F
配置如下
    <IfModule mod_rewrite.c>
        RewriteEngine on
        RewriteCond %{HTTP_USER_AGENT}  ^.*Firefox/4.0* [NC,OR]
        RewriteCond %{HTTP_USER_AGENT}  ^.*TomatoBot/1.0* [NC]
        RewriteRule  .*  -  [F]
    </IfModule>

技术分享

选项-A是模拟user-agent


















以上是关于apache 限制指定user_agent的主要内容,如果未能解决你的问题,请参考以下文章

nginx防盗链+访问控制+限制指定目录运行php+解析支持php+现在user_agent

Apache禁止指定user_agent

LAMP--Apache 禁止指定 user_agent

Apache 禁止指定user_agent---模块

Apache 配置禁止指定的 user_agent

LAMP(apache禁止解析php,限制user_agent,php配置,open_bashdir