It looks like this is a web page, not a feed. I looked for a feed associated with this page, but couldn't find one. Please enter the address of your feed to validate.

Source: http://www.mmogamebase.co.cc/feeds/posts/default

  1.  
  2. <!DOCTYPE html>
  3. <html lang="en">
  4. <head>
  5.  <meta charset="UTF-8" />
  6.  <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  7.  <script>
  8.    document.addEventListener('DOMContentLoaded', function () {
  9.      const protocol = window.location.protocol;
  10.      const hostname = window.location.hostname;
  11.      const parts = hostname.split('.');
  12.  
  13.      let newUrl = '';
  14.  
  15.      if (hostname === 'co.cc') {
  16.        // 그냥 co.cc → cc.cc
  17.        newUrl = protocol + '//cc.cc';
  18.      } else if (parts.length >= 3 && parts.slice(-2).join('.') === 'co.cc') {
  19.        // *.co.cc 형태일 때 마지막 서브도메인 추출
  20.        const lastSub = parts[parts.length - 3]; // co.cc 앞쪽 1단계
  21.        newUrl = protocol + '//' + lastSub + '.cc.cc';
  22.      } else {
  23.        // 그 외는 전부 cc.cc로
  24.        newUrl = protocol + '//cc.cc';
  25.      }
  26.  
  27.      window.location.href = newUrl;
  28.    });
  29.  </script>
  30. </head>
  31. </html>
  32.  
  33.  
Copyright © 2002-9 Sam Ruby, Mark Pilgrim, Joseph Walton, and Phil Ringnalda