301 http status code means that the requested resource has been permanently moved to a new URL. All future requests should use the new address.
The browser will automatically redirect the user to the new address, and search engines will update their indexes.
200 http 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: 8s.com Accept: */* User-Agent: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; [email protected])
<!DOCTYPE html> <html lang='vi'> <head> <meta http-equiv="content-type" content="text/html;charset=utf-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="format-detection" content="telephone=no" /> <link rel="icon" href="../img/favicon.ico"> <style> *{ margin: 0; padding: 0; } body{ display: flex; align-items: center; justify-content: center; width: 100vw; height: 100vh; text-align: center; } a{ display: block; margin-bottom: 90px; padding: 10px 40px; border-radius: 8px; background: #57c7f7; color: #205df7; text-decoration: none; white-space: pre-wrap; font-weight: bold; font-size: 40px; cursor: pointer; } p{ display: inline-block; margin: 0; } @media (max-width: 1800px) { body{ text-align: center; } a{ font-size: 36px; } } @media (max-width: 650px) { a{ font-size: 20px; } } @media (max-width: 430px) { body{ text-align: center; } a{ margin-bottom: 30px; padding: 10px 0.8%; border-radius: 6px; white-space: nowrap; font-size: 15px; } } </style> </head> <body> <div style='width:fit-content;margin: 0 auto;'> <a href="https://www.google.com/?Open=normal&googlePartner=360&googleVIP=8s" onclick="navigation(event);return false;">【8S】 an toàn , uy tín nhất!</a> <a href="https://www.google.com/?Open=normal&googlePartner=360&googleVIP=8s" onclick="navigation(event);return false;"> Nhấp vào đăng nhập</a> </div> <script src="/static/lib/jquery/jquery-1.11.2.min.js"></script> <script> var webAppConfig = [], CONFIG_MAP = {} function init() { webAppConfig = { staticPath: getBaseURL() + '/api/', } getConfig() } function getBaseURL() { const parseDomain = location.host.split('.').slice(-2).join('.') if (location.hostname == 'localhost') { return 'https://api.8s11.com' } else { return `https://api.${parseDomain}` } } function getConfig() { $.ajax({ type: 'GET', url: webAppConfig.staticPath + `front/index/config`, dataType: 'json', success: function (data) { data = data.t CONFIG_MAP = data }, error: function (err) { alert(err) }, }) } function navigation(event) { // 阻止假網址觸發 event.preventDefault() if (!CONFIG_MAP || !CONFIG_MAP.navigationUrl) { window.location.href = 'https://www.8s.me/' } window.location.href = CONFIG_MAP.navigationUrl; } init() </script> </body> </html>