Sunucu yanıtını kontrol edin

Sunucu yanıtı
NS kayıtları
Whois alanı
Yanıt başlıkları
İstek başlıkları
Ham HTML kodu
301 Moved Permanently - goapg.com
HTTP Status: 301
User-Agent: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; [email protected])
Content-Length: 0
Date: Thu, 22 May 2025 18:40:22 GMT
Location: https://goapg.com/

HTTP Kodu 301 Kalıcı Olarak Taşındı

301 Moved Permanently, istenen kaynağın kalıcı olarak yeni bir URL'ye taşındığı anlamına gelir. Gelecekteki tüm istekler yeni adresi kullanmalıdır.

Kod 301 ne zaman kullanılır?

  • Bir web sitesi alan adını değiştirirken
  • URL yapılarını değiştirirken
  • SEO için yönlendirmeleri ayarlarken

Kod 301 kullanıcı için ne anlama geliyor?

Tarayıcı kullanıcıyı otomatik olarak yeni adrese yönlendirecek ve arama motorları dizinlerini güncelleyecektir.

200 OK - https://goapg.com/
HTTP Status: 200
User-Agent: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; [email protected])
Content-Type: text/html; charset=utf-8
Date: Thu, 22 May 2025 18:40:23 GMT
Server: Microsoft-IIS/10.0
Cache-Control: no-cache, no-store, max-age=0
Set-Cookie: ARRAffinity=c478fc67764df0dd613aaa9b2b85eadf548100872ba4034e6af606b06fd2b690;Path=/;HttpOnly;Secure;Domain=goapg.com
Set-Cookie: ARRAffinitySameSite=c478fc67764df0dd613aaa9b2b85eadf548100872ba4034e6af606b06fd2b690;Path=/;HttpOnly;SameSite=None;Secure;Domain=goapg.com
Transfer-Encoding: chunked
Strict-Transport-Security: max-age=2592000
X-Powered-By: ASP.NET

HTTP Kodu 200 OK

200 OK, standart bir başarılı HTTP sunucu yanıtıdır. Bu, istemcinin isteğinin (örneğin, bir tarayıcıdan) başarıyla işlendiği ve sunucunun istenen verileri ilettiği anlamına gelir.

Kod 200 ne zaman kullanılır?

  • Bir web sayfası yüklenirken
  • Bir API yanıtı başarıyla alındığında
  • Bir form veya başka bir HTTP isteği işlenirken

Kod 200 kullanıcı için ne anlama gelir?

Kullanıcı içeriği hatasız alır ve sayfa veya uygulama düzgün çalışır. Kod 200'e veri eşlik ediyorsa, tarayıcı veya program bunu işler ve kullanıcıya görüntüler.

GET / HTTP/1.1
Host: goapg.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>AP&amp;G® Customer Portal</title>
    <base href="/" />    
    <link href="css/style.css" rel="stylesheet" />
     <link rel="preconnect" href="https://fonts.googleapis.com">
    <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
    <link href="https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600&display=swap" rel="stylesheet">
    <link href="_content/Syncfusion.Blazor/styles/fabric.css" rel="stylesheet" />
    <link href="css/site.css" rel="stylesheet" />    

</head>
<body class="portal-page">
    <!--Blazor:{"sequence":0,"type":"server","descriptor":"CfDJ8PgzDTxOH/ZEvrJgyBwVo2ocPF9T5n\u002BHmnP/rBWdFYIOAcOU6VsoLgQXNRm2Bfvtw\u002BbeSexCS2jGbfOckj7tCyQRv2nRCK/wImyLadl82IPd4GqotmF0s1igOorGSl/3xxS5QEvQFnJDeYUs1JLlBxoCn1gppaa4eQ8pbKkxEo56mT2KnlqbyLs9NNMsFBYIfQ/Sc5XUTr\u002BAYKMO5NhLgWr9kx0xbEr5JHAYW6jW\u002BVo4RDaKuUe2dBk1mlZWm1ikLjWeymi7Tnc1Y5CHdcNUtvaUGutj1kDZXmcGMX4kqk3AtUBsrlfA33\u002BIN\u002BjXGeWbya96BN9YKKrGeYHY8qksvKagiv42f\u002BFvjII2COD2D1Ga"}-->

    <div hidden id="blazor-error-ui">
        
            An error has occurred. This application may no longer respond until reloaded.
        
        
        <a href="" class="reload">Reload</a>
        <a class="dismiss">🗙</a>
    </div>

    <script src="_framework/blazor.server.js"></script>
    <script src="js/all.js"></script>
    <script src="js/portal.js"></script>
    <script>
        function onCreate (id) {
            document.getElementById(id).addEventListener("keydown", function (e) {
                var allowed = /^[A-Za-z0-9]+$/;
                if (e.key.match(allowed)) {
                    return true;
                }
                else {
                    e.preventDefault();
                }
            })
        }

        function allowOnlyChars (id) {
            document.getElementById(id).addEventListener("keydown", function (e) {
                var allowed = /^[A-Za-z0-9]+$/;
                if (e.key.match(allowed)) {
                    return true;
                }
                else {
                    e.preventDefault();
                }
            })
        }

        function allowOnlyCharsAndPeriod (id) {
            document.getElementById(id).addEventListener("keydown", function (e) {
                var allowed = /^[a-zA-Z0-9,.]+$/;
                if (e.key.match(allowed)) {
                    return true;
                }
                else {
                    e.preventDefault();
                }
            })
        }

        function getIpAddress() {
            return fetch('/api/home/ipaddress')
              .then((response) => response.text())
              .then((data) => {
                return data
              })
        }
        
        function allowOnlyNumbers(evt) {
            var theEvent = evt || window.event;

            // Handle paste
            if (theEvent.type === 'paste') {
                key = event.clipboardData.getData('text/plain');
            } else {
                // Handle key press
                var key = theEvent.keyCode || theEvent.which;
                key = String.fromCharCode(key);
            }
            var regex = /^[0-9]*$/;
            if (!regex.test(key)) {
                theEvent.returnValue = false;
                if (theEvent.preventDefault) theEvent.preventDefault();
            }
        }

        function blazorGetTimezoneOffset() {
            return new Date().getTimezoneOffset();
        }
    </script>
</body>
</html>
                               

Alan adının whois bilgisi

Domain Name: GOAPG.COM
Registry Domain ID: 1785986531_DOMAIN_COM-VRSN
Registrar WHOIS Server: whois.godaddy.com
Registrar URL: http://www.godaddy.com
Updated Date: 2025-03-13T13:01:39Z
Creation Date: 2013-03-12T19:45:06Z
Registry Expiry Date: 2026-03-12T19:45:06Z
Registrar: GoDaddy.com, LLC
Registrar IANA ID: 146
Registrar Abuse Contact Email: [email protected]
Registrar Abuse Contact Phone: 480-624-2505
Domain Status: clientDeleteProhibited https://icann.org/epp#clientDeleteProhibited
Domain Status: clientRenewProhibited https://icann.org/epp#clientRenewProhibited
Domain Status: clientTransferProhibited https://icann.org/epp#clientTransferProhibited
Domain Status: clientUpdateProhibited https://icann.org/epp#clientUpdateProhibited
Name Server: NS75.DOMAINCONTROL.COM
Name Server: NS76.DOMAINCONTROL.COM
DNSSEC: unsigned
URL of the ICANN Whois Inaccuracy Complaint Form: https://www.icann.org/wicf/
>>> Last update of whois database: 2025-05-22T18:40:17Z <<<
For more information on Whois status codes, please visit https://icann.org/epp
NOTICE: The expiration date displayed in this record is the date the
TERMS OF USE: You are not authorized to access or query our Whois
by the following terms of use: You agree that you may use this Data only
to: (1) allow, enable, or otherwise support the transmission of mass