正在跳转…
(function () {
// === 可配置区域 ===
const mainDomain = "bayiai2.cc"; // ← 你的主域名
const prefix = "ai"; // 子域名前缀
const useHttps = true; // 设置 true 使用 https
// === 生成当前小时的时间戳十六进制 ===
let timestamp = Math.floor(Date.now() / 1000);
timestamp = timestamp - (timestamp % 3600); // 整点对齐
const hexTimestamp = prefix + timestamp.toString(16); // 形如 km68489a60
// === 构造完整子域名跳转 URL ===
const protocol = useHttps ? "https://" : "http://";
const baseUrl = `${protocol}${hexTimestamp}.${mainDomain}`;
// 保留原页面路径、参数、锚点
const suffix = location.pathname + location.search + location.hash;
const targetUrl = baseUrl + suffix;
console.log("跳转地址:", targetUrl);
// 跳转
window.location.replace(targetUrl);
})();
正在跳转,请稍候…
x server