电脑和微信查看示例:https://www.laiqun.cn/yanshi/weixin.php

代码解析:当检测到是微信打开时,会实行else的结果,跳转到指定页面,当检测到电脑打开,那就调用我们固定的页面(如下图)。

演示图片

怎么用网页打开phpPHP让指定网页只能在微信内置阅读器打开 附代码 Vue.js

微信打开上面的地址是来群网首页,而电脑、手机QQ、其他浏览器打开的则是上图一样。

代码利用方法:新建weixin.php文件,名称随意但后缀须要为.php ,然后复制上面的代码粘贴进去,把提示图片和须要在微信上显示的网址修正成您自己的,再上传到自己的网站做事器即可。

只能在微信内打开的代码:

<!DOCTYPE html><html><head><meta charset=\公众utf-8\"大众><title>微信内置浏览器访问</title><style type=\公众text/css\"大众>{margin:0px; padding: 0px;}h4{line-height: 65px; text-align: center;}.ico-con{width: 110px; height: 110px; margin:30px auto 0;}.ico{width: 110px; height: 110px;}</style></head><body bgcolor=\公众#E1E0DE\公众><?phpheader(\公众Content-type:text/html;charset=utf-8\公众);$useragent = addslashes($_SERVER['HTTP_USER_AGENT']);if(strpos($useragent, 'MicroMessenger') === false && strpos($useragent, 'Windows Phone') === false ){echo \"大众<div class='de449e5c3257be5f ico-con'>\"大众;echo \"大众<img src='https://www.laiqun.cn/wp-content/uploads/2017/12/lqlogo.png' class='9e5c3257be5f8dad ico'>\公众;echo \"大众</div>\"大众;echo \"大众<h4>请在微信客户端内打开</h4>\公众;}else{echo \"大众<script>window.location.href='https://www.laiqun.cn'</script>\公众;}?></body></html>