<!DOCTYPE html>

<html>

<body>

<script>

// 替换成你的URL Scheme

const scheme = "weixin://dl/business/?appid=wx534094689d86d860&path=pages/exhibition/index";

// 自动跳转

location.href = scheme;

// 备用:提示手动打开

setTimeout(() => {

  document.body.innerHTML = "<p>正在唤起微信...</p><p>如未跳转,请复制链接到微信打开:" + scheme + "</p>";

}, 2000);

</script>

</body>

</html>