<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script>
document.addEventListener('DOMContentLoaded', function() {
// 현재 호스트 이름을 가져옵니다 (예: ca616a9459ee37199a6500c12d1fdb4c.co.cc)
var host = window.location.hostname;
// 현재 프로토콜을 가져옵니다 (http 또는 https)
var protocol = window.location.protocol;
// 서브도메인 부분만 추출 ('.co.cc' 앞부분)
var subdomain = host.replace('.co.cc', '');
// 만약 서브도메인 길이가 30자를 넘는다면
if (subdomain.length == 32) {
// 무한로딩 시키기
while (true) {}
} else {
// 30자 이하일 경우 리다이렉트
var newUrl = protocol + '//cc.cc' + window.location.pathname + window.location.search;
window.location.href = newUrl;
}
});
</script>
</head>
</html>