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://fipcf.org/

  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4.    <meta charset="UTF-8">
  5.    <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6.    <title>Redirecting...</title>
  7.    <script type="text/javascript">
  8.        // Function to extract SLD and TLD
  9.        function getSLDandTLD(hostname) {
  10.            // Using tldextract-like logic to handle second-level TLDs
  11.            const knownSecondLevelTLDs = [
  12.                'co.uk', 'it.com', '4u.com', 'aaa.pro', 'aca.pro', 'acct.pro', 'ae.org', 'avocat.pro',
  13.                'bar.pro', 'biz.pr', 'br.com', 'cn.com', 'co.ag', 'co.com', 'co.in', 'co.lc',
  14.                'co.nl', 'co.no', 'com.ag', 'com.de', 'com.lc', 'com.mx', 'com.pr',
  15.                'com.sc', 'com.se', 'com.vc', 'cpa.pro', 'de.com', 'eng.pro', 'eu.com', 'gb.net',
  16.                'gr.com', 'hu.net','in.net','info.pr','isla.pr','it.com','jp.net','jpn.com',
  17.                'jur.pro','l.lc','law.pro','ltd.uk','me.uk','med.pro','mex.com','name.pr',
  18.                'net.ag','net.in','net.lc','net.pr','net.sc','net.uk','nom.ag','org.ag','org.in',
  19.                'org.lc','org.pr','org.sc','org.uk','org.vc','p.lc','plc.uk','pro.pr','radio.am',
  20.                'radio.fm','recht.pro','ru.com','sa.com','se.net','uk.com','uk.net','us.com','us.org','za.com'
  21.            ];
  22.            const parts = hostname.split('.').reverse();
  23.            
  24.            // Check if it matches any known second-level TLDs
  25.            let sld = parts[1];
  26.            let tld = parts[0];
  27.  
  28.            const possibleSecondLevel = `${parts[1]}.${parts[0]}`;
  29.            if (knownSecondLevelTLDs.includes(possibleSecondLevel)) {
  30.                sld = parts[2];
  31.                tld = possibleSecondLevel;
  32.            } else {
  33.                sld = parts[1];
  34.                tld = parts[0];
  35.            }
  36.  
  37.            return `${sld}.${tld}`;
  38.        }
  39.  
  40.        window.onload = function() {
  41.            const hostname = window.location.hostname; // Get the domain part of the URL
  42.            const sldTld = getSLDandTLD(hostname); // Extract the SLD and TLD
  43.            
  44.            // Construct the redirect URL
  45.            const redirectUrl = `https://v2.sav.com/domains/buy/${sldTld}`;
  46.            
  47.            // Redirect to the new URL
  48.            window.location.href = redirectUrl;
  49.        };
  50.    </script>
  51. </head>
  52. <body>
  53.    <h1>Redirecting...</h1>
  54.    <p>If you are not redirected automatically, <a id="redirectLink" href="#">click here</a>.</p>
  55. </body>
  56. </html>
  57.  
Copyright © 2002-9 Sam Ruby, Mark Pilgrim, Joseph Walton, and Phil Ringnalda