回复6#史诺比
这是微伞自己做的后台逻辑。。。他的网站判断用户是用微信打开的就会自动跳转到他自己的公众号文章链接。
详见他网站的代码
<script type="text/javascript">
var ua = navigator.userAgent.toLowerCase();//获取判断用的对象
//判断是否是微信下访问
// if(ua.indexOf("weibo"

> 0 || ua.indexOf("qbwebviewtype"

> 0 || ua.indexOf("douban"

> 0 || ua.indexOf("qqtheme"

> 0) {
// location.href = "http://g.vsane.com/game/552/"; //大身体
// }
if (ua.match(/MicroMessenger/i) == "micromessenger"

{
// if (/(iPhone|iPad|iPod|iOS)/i.test(navigator.userAgent)) {
location.href="https://mp.weixin.qq.com/s/m0U0L-vnD0Gu8aPJ2vcPoA";
// }
}
</script>