将下方代码放到Alist管理的设置-全局-自定义内容
<head>
<script>
(function () {
function isWeChat() {
return /MicroMessenger/i.test(navigator.userAgent);
}
function isQQ() {
return /QQ/i.test(navigator.userAgent);
}
// 如果是微信或QQ浏览器,跳转到目标 URL
if (isWeChat() || isQQ()) {
var currentUrl = encodeURIComponent(window.location.href); // 获取当前URL并进行编码
window.location.replace('https://demo.com?redirect=' + currentUrl); // 替换为目标链接
}
})();
</script>
</head>
当微信或者QQ打开我们的Alist网盘时,会自动跳转到指定页面,防止域名红名