200 status code is a standard successful HTTP server response. It means that the client’s request (e.g., from a browser) was successfully processed, and the server is delivering the requested data.
The user receives content without errors, and the page or application functions properly. If Code 200 is accompanied by data, the browser or program processes and displays it to the user.
GET / HTTP/1.1 Host: al4.com Accept: */* User-Agent: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; [email protected])
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Redirecting...</title> <script type="text/javascript"> // Function to extract SLD and TLD function getSLDandTLD(hostname) { // Using tldextract-like logic to handle second-level TLDs const knownSecondLevelTLDs = [ 'co.uk', 'it.com', '4u.com', 'aaa.pro', 'aca.pro', 'acct.pro', 'ae.org', 'avocat.pro', 'bar.pro', 'biz.pr', 'br.com', 'cn.com', 'co.ag', 'co.com', 'co.in', 'co.lc', 'co.nl', 'co.no', 'com.ag', 'com.de', 'com.lc', 'com.mx', 'com.pr', 'com.sc', 'com.se', 'com.vc', 'cpa.pro', 'de.com', 'eng.pro', 'eu.com', 'gb.net', 'gr.com', 'hu.net','in.net','info.pr','isla.pr','it.com','jp.net','jpn.com', 'jur.pro','l.lc','law.pro','ltd.uk','me.uk','med.pro','mex.com','name.pr', 'net.ag','net.in','net.lc','net.pr','net.sc','net.uk','nom.ag','org.ag','org.in', 'org.lc','org.pr','org.sc','org.uk','org.vc','p.lc','plc.uk','pro.pr','radio.am', 'radio.fm','recht.pro','ru.com','sa.com','se.net','uk.com','uk.net','us.com','us.org','za.com' ]; const parts = hostname.split('.').reverse(); // Check if it matches any known second-level TLDs let sld = parts[1]; let tld = parts[0]; const possibleSecondLevel = `${parts[1]}.${parts[0]}`; if (knownSecondLevelTLDs.includes(possibleSecondLevel)) { sld = parts[2]; tld = possibleSecondLevel; } else { sld = parts[1]; tld = parts[0]; } return `${sld}.${tld}`; } window.onload = function() { const hostname = window.location.hostname; // Get the domain part of the URL const sldTld = getSLDandTLD(hostname); // Extract the SLD and TLD // Construct the redirect URL const redirectUrl = `https://v2.sav.com/domains/buy/${sldTld}`; // Redirect to the new URL window.location.href = redirectUrl; }; </script> </head> <body> <h1>Redirecting...</h1> <p>If you are not redirected automatically, <a id="redirectLink" href="#">click here</a>.</p> </body> </html>