####1.准备站点目录 for i in {android,iphone,firefox,chrome,default} ;do mkdir /html/terminal/${i} && echo $i >/html/terminal/${i}/index.html ;done ####2.准备配 ...
分类:
Web程序 时间:
2021-04-21 12:00:37
阅读次数:
0
##机型 if(!function_exists('get_client_device')){ function get_client_device(){ if(request()->isMobile()){ $agent = strtolower($_SERVER['HTTP_USER_AGENT ...
分类:
Web程序 时间:
2020-12-30 11:18:27
阅读次数:
0
function is_weixin_visit() { if (strpos($_SERVER['HTTP_USER_AGENT'], 'MicroMessenger') !== false) { return true; } else { return false; } } ...
分类:
微信 时间:
2020-06-29 17:02:39
阅读次数:
92
##日志格式 '$remote_addr - $remote_user [$time_local] "$request" $status $body_bytes_sent "$http_referer" "$http_user_agent" "$http_x_forwarded_for"' 首先把字 ...
分类:
其他好文 时间:
2020-06-24 14:24:57
阅读次数:
55
if ($http_user_agent ~* (80legs.com|Abonti|AcoonBot|Acunetix|adbeat_bot|AddThis.com|adidxbot|ADmantX|AhrefsBot|AngloINFO|Antelope|Applebot|BaiduSpider ...
分类:
其他好文 时间:
2020-05-29 13:53:07
阅读次数:
133
//判断是否是手机function is_mobile(){ $user_agent = $_SERVER['HTTP_USER_AGENT']; $mobile_agents = Array("240x320","acer","acoon","acs-","abacho","ahong", "ai ...
分类:
移动开发 时间:
2020-04-04 11:40:49
阅读次数:
240
1、在/etc/nginx/conf.d目录下(因Nginx的安装区别,可能站点配置文件的路径有所不同)新建文件deny_agent.config配置文件: #forbidden Scrapy if ($http_user_agent ~* (Scrapy|Curl|HttpClient)) { r ...
分类:
Web程序 时间:
2020-03-22 01:50:06
阅读次数:
370
nginx根据http_user_agent防DDOS 前端squid反向代理到nginx nginx根据http_user_agent防DDOS 首先查看访问日志,找出可疑访问 找到http_user_agent 的特征,然后再作过滤 "Mozilla/4.0 (compatible; MSIE ...
分类:
其他好文 时间:
2020-03-20 12:23:16
阅读次数:
68
server { listen 10001; server_name qwe.com asd.com; set $flag 0; if ($http_user_agent ~* "Chrome"){ set $flag "${flag}1"; } if ($host ~* qwe.com){ set ...
分类:
其他好文 时间:
2020-03-02 12:54:47
阅读次数:
223
server模块下添加 if ($http_user_agent ~* '(Android|webOS|iPhone|iPod|BlackBerry)') { rewrite ^.+ http://mobile.test.com/mobile/$uri;} 其中mobile为手机端的路径标识, 可以 ...
分类:
移动开发 时间:
2020-03-02 12:47:37
阅读次数:
160