元气骑士 大佬有话说 : 2020-1-13 00:34:14
网站如何屏蔽指定的浏览器
网站加段代码屏蔽qq浏览器访问,有大佬会写吗
一位不知名网友 大佬有话说 : 2020-1-13 00:35:50
<?php
if(false!==strpos($_SERVER[‘HTTP_USER_AGENT’],’QQBrowser’)){
die(‘禁止使用QQ浏览器’);
}
?>
<script type="text/javascript">
window.onload = function (){
var userAgent = navigator.userAgent; //取得浏览器的userAgent字符串
var isQQBrowser = userAgent.indexOf("QQBrowser") > -1;
if (isQQBrowser) {
document.write(‘你使用的是QQ浏览器’);
};
}
</script>
QQ浏览器(android)
MQQBrowser/3.6/Adr (Linux; U; 4.0.3; zh-cn; HUAWEI U8818 Build/U8818V100R001C17B926;480*800)
iPhone: u.indexOf(‘iPhone’) > -1 || u.indexOf(‘Mac’) > -1, //是否为iPhone或者QQ HD浏览器
icaai 大佬有话说 : 2020-1-13 00:36:40
楼上正解
yfans 大佬有话说 : 2020-1-13 00:38:50
yc018t优秀
一位不知名网友 大佬有话说 : 2020-1-13 00:39:00
icaai 大佬有话说 : 2020-1-13 00:36
楼上正解
是吗:lol
寒冰飞雪 大佬有话说 : 2020-1-13 00:51:46
一位不知名网友 大佬有话说 : 2020-1-13 00:35
禁止IE的来一个,哈哈