Check server response of

Server response
NS records
Whois domain
Response headers
Request headers
Raw HTML code
301 Moved Permanently - dev1c.com
HTTP Status: 301
User-Agent: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; [email protected])
Server: nginx/1.26.3
Date: Wed, 30 Apr 2025 12:28:59 GMT
Content-Type: text/html
Content-Length: 169
Connection: keep-alive
Location: https://dev1c.com/

HTTP Code 301 Moved Permanently

301 status code means that the requested resource has been permanently moved to a new URL. All future requests should use the new address.

When is Code 301 used?

  • When changing a website domain
  • When modifying URL structures
  • When setting up redirects for SEO

What does Code 301 mean for the user?

The browser will automatically redirect the user to the new address, and search engines will update their indexes.

200 OK - https://dev1c.com/
HTTP Status: 200
User-Agent: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; [email protected])
Server: nginx/1.26.3
Date: Wed, 30 Apr 2025 12:28:59 GMT
Content-Type: text/html; charset=UTF-8
Transfer-Encoding: chunked
Connection: keep-alive
X-Powered-By: PHP/8.2.27

HTTP Code 200 OK

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.

When is Code 200 used?

  • When loading a web page
  • When successfully receiving an API response
  • When processing a form or another HTTP request

What does Code 200 mean for the user?

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: dev1c.com
Accept: */*
User-Agent: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; [email protected])
<!DOCTYPE html>
<html lang="ru">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta name="description" content="Скачать мобильные приложения Dev 1С для ARM и ARM64 архитектур. Быстрые и удобные решения для вашего бизнеса.">
    <meta name="keywords" content="Dev 1С, мобильные приложения, ARM, ARM64, APK, скачать, бизнес приложения">
    <meta name="author" content="Dev 1С Team">

    <!-- Open Graph Metadata for Social Media -->
    <meta property="og:title" content="Приложения Dev 1С">
    <meta property="og:description" content="Скачать мобильные приложения Dev 1С для ARM и ARM64 архитектур.">
    <meta property="og:image" content="https://dev1c.com/css/favicon/web-app-manifest-512x512.png">
    <meta property="og:url" content="https://dev1c.com">
    <meta property="og:type" content="website">

    <!-- Twitter Card Metadata -->
    <meta name="twitter:card" content="summary_large_image">
    <meta name="twitter:title" content="Приложения Dev 1С">
    <meta name="twitter:description" content="Скачать мобильные приложения Dev 1С для ARM и ARM64 архитектур.">
    <meta name="twitter:image" content="https://dev1c.com/css/favicon/web-app-manifest-512x512.png">

    <!-- Canonical Link -->
    <link rel="canonical" href="https://dev1c.com">

    <!-- Favicon -->
    <link rel="icon" href="https://dev1c.com/css/favicon/favicon.ico" type="image/x-icon">
    <link rel="apple-touch-icon" href="https://dev1c.com/css/favicon/apple-touch-icon.png" sizes="180x180">
    <link rel="icon" href="https://dev1c.com/css/favicon/favicon-96x96.png" sizes="96x96" type="image/png">

    <!-- Web Manifest -->
    <link rel="manifest" href="https://dev1c.com/css/favicon/manifest.webmanifest">

    <!-- Preconnect for Performance -->
    <link rel="preconnect" href="https://dev1c.com" crossorigin="anonymous">
    <link rel="dns-prefetch" href="https://dev1c.com">

    <!-- Theme Colors -->
    <meta name="theme-color" content="#1e1e1e">
    <meta name="msapplication-TileColor" content="#1e1e1e">

    <!-- Stylesheet -->
    <link rel="stylesheet" href="css/style.css">

    <!-- Title -->
    <title>Приложения Dev 1С Team</title>


</head>
<body>
<div class="container">
    <header class="header">
        <h1>Приложения Dev 1С Team</h1>
    </header>

    <main class="app-list" id="app-list">
        <!-- Cards will be dynamically generated -->
        <div class="loading">Загрузка приложений...</div>
    </main>
</div>

<!-- Modal -->
<div id="modal" class="modal" onclick="checkCloseModal(event)">
    <div class="modal-content">
        <span class="close" onclick="closeModal()">&times;</span>
        <div class="modal-logo">
            <img id="modal-logo" src="" alt="Логотип приложения">
        </div>
        <h2 id="modal-title">Название приложения</h2>
        <p id="modal-description">Описание приложения</p>
        <div id="modal-version" class="file-info">Версия: </div>
        <div id="modal-size" class="file-info">Размер: </div>
        <div id="modal-modified" class="file-info">Обновлено: </div>
        <a id="telegram-bot-link" class="telegram-bot-link" href="#" target="_blank" style="display: none;">
            Наш канал обновлений
        </a>
        <button id="download-btn" class="download-btn">Скачать</button>
    </div>
</div>

<script>
    const appList = document.getElementById('app-list');
    const modal = document.getElementById('modal');
    const modalContent = document.querySelector('.modal-content');
    const modalLogo = document.getElementById('modal-logo');
    const modalTitle = document.getElementById('modal-title');
    const modalDescription = document.getElementById('modal-description');
    const modalVersion = document.getElementById('modal-version');
    const modalSize = document.getElementById('modal-size');
    const modalModified = document.getElementById('modal-modified');
    const telegramBotLink = document.getElementById('telegram-bot-link');
    const downloadBtn = document.getElementById('download-btn');

    let apps = [];

    // Format file size
    function formatFileSize(bytes) {
        if (bytes === 0) return '0 Bytes';
        const k = 1024;
        const sizes = ['Bytes', 'KB', 'MB', 'GB'];
        const i = Math.floor(Math.log(bytes) / Math.log(k));
        return parseFloat((bytes / Math.pow(k, i)).toFixed(2)) + ' ' + sizes[i];
    }

    // Format date
    function formatDate(dateString) {
        const options = { year: 'numeric', month: 'long', day: 'numeric' };
        return new Date(dateString).toLocaleDateString('ru-RU', options);
    }

    // Fetch apps from the PHP backend
    async function fetchApps() {
        try {
            appList.innerHTML = '<div class="loading">Загрузка приложений...</div>';

            const response = await fetch('apps.php');
            if (!response.ok) throw new Error('Network response was not ok');

            apps = await response.json();

            if (apps.length === 0) {
                appList.innerHTML = '<div class="no-apps">Нет доступных приложений</div>';
            } else {
                renderApps();
            }
        } catch (error) {
            console.error('Failed to fetch apps:', error);
            appList.innerHTML = `<div class="error">Ошибка загрузки приложений: ${error.message}</div>`;
        }
    }

    // Render app cards
    function renderApps() {
        appList.innerHTML = '';

        apps.forEach(app => {
            const card = document.createElement('div');
            card.className = 'app-card';
            card.onclick = () => openModal(app);

            card.innerHTML = `
                <div class="app-logo">
                    <img src="${app.logo}" alt="${app.title}" onerror="this.src='https://dev1c.com/logo_apps/default_logo.png'">
                </div>
                <div class="app-info">
                    <h2>${app.title}</h2>
                    <p>${app.description}</p>
                    <p><strong>Версия:</strong> ${app.version}</p>
                </div>
            `;
            appList.appendChild(card);
        });
    }

    // Open modal with app details
    function openModal(app) {
        modalTitle.textContent = app.title;
        modalDescription.textContent = app.description;
        modalVersion.textContent = `Версия: ${app.version}`;
        modalSize.textContent = `Размер: ${formatFileSize(app.size)}`;
        modalModified.textContent = `Обновлено: ${formatDate(app.lastModified)}`;

        // Set logo with fallback
        modalLogo.src = app.logo;
        modalLogo.onerror = () => {
            modalLogo.src = 'https://dev1c.com/logo_apps/default_logo.png';
        };

        // Set download link
        downloadBtn.onclick = () => {
            window.location.href = app.downloadLink;
        };

        // Show/hide Telegram bot link
        if (app.telegramBot) {
            telegramBotLink.href = app.telegramBot;
            telegramBotLink.style.display = 'block';
        } else {
            telegramBotLink.style.display = 'none';
        }

        modal.classList.add('active');
    }

    function closeModal() {
        modal.classList.remove('active');
    }

    function checkCloseModal(event) {
        if (event.target === modal) {
            closeModal();
        }
    }

    document.addEventListener('keydown', (event) => {
        if (event.key === 'Escape' && modal.classList.contains('active')) {
            closeModal();
        }
    });

    // Initialize
    document.addEventListener('DOMContentLoaded', fetchApps);
</script>
</body>
</html>                               

Whois info of domain

Domain Name: DEV1C.COM
Registry Domain ID: 2936429995_DOMAIN_COM-VRSN
Registrar WHOIS Server: whois.squarespace.domains
Registrar URL: http://squarespace.domains
Updated Date: 2024-11-23T06:40:00Z
Creation Date: 2024-11-23T06:39:59Z
Registry Expiry Date: 2025-11-23T06:39:59Z
Registrar: Squarespace Domains LLC
Registrar IANA ID: 3827
Registrar Abuse Contact Email: [email protected]
Registrar Abuse Contact Phone: 1-646-693-5324
Domain Status: clientDeleteProhibited https://icann.org/epp#clientDeleteProhibited
Domain Status: clientTransferProhibited https://icann.org/epp#clientTransferProhibited
Name Server: NS-CLOUD-E1.GOOGLEDOMAINS.COM
Name Server: NS-CLOUD-E2.GOOGLEDOMAINS.COM
Name Server: NS-CLOUD-E3.GOOGLEDOMAINS.COM
Name Server: NS-CLOUD-E4.GOOGLEDOMAINS.COM
DNSSEC: unsigned
URL of the ICANN Whois Inaccuracy Complaint Form: https://www.icann.org/wicf/
>>> Last update of whois database: 2025-04-30T12:28:42Z <<<
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