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 - pbimk.com
HTTP Status: 301
User-Agent: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; [email protected])
Connection: Keep-Alive
Keep-Alive: timeout=5, max=100
content-type: text/html
content-length: 795
date: Fri, 23 May 2025 11:11:24 GMT
server: LiteSpeed
location: https://pbimk.com/
platform: hostinger
panel: hpanel
content-security-policy: upgrade-insecure-requests
x-powered-by: PHP/8.2.28
content-type: text/html; charset=UTF-8
date: Fri, 23 May 2025 11:11:24 GMT
server: LiteSpeed
platform: hostinger
panel: hpanel
content-security-policy: upgrade-insecure-requests
alt-svc: h3=":443"; ma=2592000, h3-29=":443"; ma=2592000, h3-Q050=":443"; ma=2592000, h3-Q046=":443"; ma=2592000, h3-Q043=":443"; ma=2592000, quic=":443"; ma=2592000; v="43,46"

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

301 durum kodu, 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.

GET / HTTP/1.1
Host: pbimk.com
Accept: */*
User-Agent: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; [email protected])
<!DOCTYPE html>
<html lang="pl">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>PBIMK SHOP - Kompleksowe rozwiązania Amazon</title>
    <link rel="icon" type="image/png" href="logo.png">
    <style>
        :root {
            --primary: #0073a8;
            --secondary: #ff9900;
            --dark: #232f3e;
            --light: #f8f8f8;
            --white: #ffffff;
            --gray: #e6e6e6;
            --text: #333333;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background-color: var(--light);
            color: var(--text);
            line-height: 1.6;
        }
        
        header {
            background-color: var(--white);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            transition: all 0.3s ease;
        }
        
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--primary);
            text-decoration: none;
            display: flex;
            align-items: center;
        }
        
        .logo span {
            color: var(--secondary);
        }
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav ul li {
            margin-left: 2rem;
        }
        
        nav ul li a {
            text-decoration: none;
            color: var(--text);
            font-weight: 500;
            transition: color 0.3s ease;
            position: relative;
        }
        
        nav ul li a:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            background: var(--primary);
            left: 0;
            bottom: -5px;
            transition: width 0.3s ease;
        }
        
        nav ul li a:hover {
            color: var(--primary);
        }
        
        nav ul li a:hover:after {
            width: 100%;
        }
        
        .mobile-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--dark);
        }
        
        .hero {
            background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
            color: var(--white);
            padding: 7rem 2rem 5rem;
            margin-top: 4rem;
        }
        
        .hero-content {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }
        
        .hero h1 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            line-height: 1.2;
        }
        
        .hero p {
            font-size: 1.2rem;
            max-width: 700px;
            margin-bottom: 2rem;
        }
        
        .cta-button {
            display: inline-block;
            background-color: var(--secondary);
            color: var(--white);
            padding: 0.8rem 2rem;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            border: 2px solid var(--secondary);
        }
        
        .cta-button:hover {
            background-color: transparent;
            color: var(--white);
        }
        
        .section {
            padding: 5rem 2rem;
        }
        
        .section-content {
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 3rem;
            position: relative;
        }
        
        .section-title h2 {
            font-size: 2rem;
            display: inline-block;
            position: relative;
        }
        
        .section-title h2:after {
            content: '';
            position: absolute;
            width: 50px;
            height: 3px;
            background: var(--secondary);
            left: 50%;
            bottom: -10px;
            transform: translateX(-50%);
        }
        
        .services {
            background-color: var(--white);
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }
        
        .service-card {
            background-color: var(--light);
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            text-align: center;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .service-icon {
            font-size: 3rem;
            color: var(--primary);
            margin-bottom: 1rem;
        }
        
        .service-title {
            font-size: 1.3rem;
            margin-bottom: 1rem;
            color: var(--dark);
        }
        
        .about {
            background-color: var(--light);
        }
        
        .about-content {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 3rem;
        }
        
        .about-image {
            flex: 1;
            min-width: 300px;
        }
        
        .about-image img {
            width: 100%;
            height: auto;
            border-radius: 10px;
        }
        
        .about-text {
            flex: 1;
            min-width: 300px;
        }
        
        .about-text h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: var(--primary);
        }
        
        .advantages {
            margin-top: 2rem;
        }
        
        .advantage-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 1rem;
        }
        
        .advantage-icon {
            margin-right: 1rem;
            color: var(--secondary);
            font-size: 1.2rem;
        }
        
        .location {
            background-color: var(--white);
        }
        
        .location-content {
            display: flex;
            flex-wrap: wrap;
            gap: 3rem;
        }
        
        .location-info {
            flex: 1;
            min-width: 300px;
        }
        
        .location-map {
            flex: 1;
            min-width: 300px;
            height: 400px;
            background-color: var(--gray);
            border-radius: 10px;
            overflow: hidden;
        }
        
        .contact-info {
            margin-top: 2rem;
        }
        
        .contact-item {
            display: flex;
            align-items: center;
            margin-bottom: 1rem;
        }
        
        .contact-icon {
            margin-right: 1rem;
            color: var(--primary);
            font-size: 1.2rem;
        }
        
        .contact {
            background: linear-gradient(135deg, var(--dark) 0%, var(--primary) 100%);
            color: var(--white);
        }
        
        .contact-form {
            max-width: 600px;
            margin: 0 auto;
            background-color: var(--white);
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .form-group {
            margin-bottom: 1.5rem;
        }
        
        .form-label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 500;
            color: var(--text);
        }
        
        .form-control {
            width: 100%;
            padding: 0.8rem;
            border: 1px solid var(--gray);
            border-radius: 5px;
            font-size: 1rem;
            transition: border-color 0.3s ease;
        }
        
        .form-control:focus {
            outline: none;
            border-color: var(--primary);
        }
        
        textarea.form-control {
            resize: vertical;
            min-height: 120px;
        }
        
        .submit-button {
            background-color: var(--primary);
            color: var(--white);
            border: none;
            padding: 0.8rem 2rem;
            border-radius: 30px;
            font-weight: 600;
            cursor: pointer;
            transition: background-color 0.3s ease;
            display: block;
            width: 100%;
        }
        
        .submit-button:hover {
            background-color: var(--dark);
        }
        
        footer {
            background-color: var(--dark);
            color: var(--white);
            padding: 3rem 2rem;
            text-align: center;
        }
        
        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .footer-logo {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--white);
            margin-bottom: 1rem;
        }
        
        .footer-logo span {
            color: var(--secondary);
        }
        
        .footer-nav {
            margin: 1.5rem 0;
        }
        
        .footer-nav ul {
            display: flex;
            justify-content: center;
            list-style: none;
            flex-wrap: wrap;
        }
        
        .footer-nav ul li {
            margin: 0 1rem;
        }
        
        .footer-nav ul li a {
            color: var(--gray);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer-nav ul li a:hover {
            color: var(--secondary);
        }
        
        .footer-social {
            margin: 1.5rem 0;
        }
        
        .social-icon {
            display: inline-block;
            margin: 0 0.5rem;
            width: 40px;
            height: 40px;
            line-height: 40px;
            text-align: center;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: var(--white);
            transition: all 0.3s ease;
        }
        
        .social-icon:hover {
            background-color: var(--secondary);
            transform: translateY(-3px);
        }
        
        .copyright {
            margin-top: 2rem;
            color: var(--gray);
            font-size: 0.9rem;
        }
        
        /* Animation */
        .fade-in {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.5s ease, transform 0.5s ease;
        }
        
        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        /* Responsive Styles */
        @media (max-width: 768px) {
            .header-content {
                padding: 1rem;
            }
            
            .mobile-toggle {
                display: block;
            }
            
            nav {
                position: fixed;
                top: 70px;
                left: 0;
                width: 100%;
                background-color: var(--white);
                height: 0;
                overflow: hidden;
                transition: height 0.3s ease;
                box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
            }
            
            nav.active {
                height: auto;
            }
            
            nav ul {
                flex-direction: column;
                padding: 1rem;
            }
            
            nav ul li {
                margin: 1rem 0;
            }
            
            .hero {
                padding: 6rem 1rem 4rem;
            }
            
            .hero h1 {
                font-size: 2rem;
            }
            
            .section {
                padding: 3rem 1rem;
            }
            
            .service-card {
                padding: 1.5rem;
            }
        }
    </style>
</head>
<body>
    <header id="header">
        <div class="header-content">
            <a href="#" class="logo"><img width="70px" src="logo.png" alt="PBIMK SHOP" /></span></a>
            <button class="mobile-toggle" id="mobileToggle">☰</button>
            <nav id="mainNav">
                <ul>
                    <li><a href="#services">Usługi</a></li>
                    <li><a href="#about">O Nas</a></li>
                    <li><a href="#location">Lokalizacja</a></li>
                    <li><a href="#contact">Kontakt</a></li>
                </ul>
            </nav>
        </div>
    </header>

    <section class="hero">
        <div class="hero-content fade-in">
            <h1>Kompleksowe rozwiązania sprzedaży na Amazon</h1>
            <p>Specjalizujemy się we wprowadzaniu i sprzedaży produktów na największych rynkach Amazon w Europie oraz USA. Dzięki naszemu doświadczeniu, zapewniamy maksymalizację zysków oraz skuteczne zwiększenie widoczności marek i produktów.</p>
            <a href="#contact" class="cta-button">Rozpocznij współpracę</a>
        </div>
    </section>

    <section id="services" class="section services">
        <div class="section-content">
            <div class="section-title fade-in">
                <h2>Nasze Usługi</h2>
            </div>
            <div class="services-grid">
                <div class="service-card fade-in">
                    <div class="service-icon">🚀</div>
                    <h3 class="service-title">Wprowadzenie na rynek</h3>
                    <p>Kompleksowa analiza i wprowadzenie produktów na wybrane rynki Amazon w Europie i USA.</p>
                </div>
                <div class="service-card fade-in">
                    <div class="service-icon">📦</div>
                    <h3 class="service-title">Prep Center</h3>
                    <p>Profesjonalne przygotowanie produktów zgodnie ze standardami Amazon w naszym nowoczesnym centrum logistycznym.</p>
                </div>
                <div class="service-card fade-in">
                    <div class="service-icon">📊</div>
                    <h3 class="service-title">Analityka i optymalizacja</h3>
                    <p>Stałe monitorowanie rynku, optymalizacja ofert i skuteczne reagowanie na zmiany z wykorzystaniem autorskiego oprogramowania.</p>
                </div>
            </div>
        </div>
    </section>

    <section id="about" class="section about">
        <div class="section-content">
            <div class="section-title fade-in">
                <h2>O Nas</h2>
            </div>
            <div class="about-content">
                <div class="about-image fade-in">
                    <img src="magazyn.jpg" alt="PBIMK SHOP" />
                </div>
                <div class="about-text fade-in">
                    <h3>Specjaliści w sprzedaży na Amazon</h3>
                    <p>Nasza firma specjalizuje się w kompleksowym wprowadzaniu i sprzedaży produktów na największych rynkach Amazon w Europie oraz USA. Dzięki wieloletniemu doświadczeniu i gruntownej znajomości platformy Amazon, zapewniamy producentom oraz dystrybutorom maksymalizację zysków oraz skuteczne zwiększenie widoczności ich marek i produktów.</p>
                    <p>Posiadamy własny magazyn oraz nowoczesne Prep Center zlokalizowane w Karnin, gdzie zapewniamy profesjonalne przygotowanie produktów zgodnie ze standardami Amazon.</p>
                    
                    <div class="advantages">
                        <div class="advantage-item">
                            <div class="advantage-icon">✓</div>
                            <div>Doświadczony zespół specjalistów i analityków</div>
                        </div>
                        <div class="advantage-item">
                            <div class="advantage-icon">✓</div>
                            <div>Autorskie oprogramowanie do śledzenia i analizy wyników</div>
                        </div>
                        <div class="advantage-item">
                            <div class="advantage-icon">✓</div>
                            <div>Kompleksowa obsługa od A do Z</div>
                        </div>
                        <div class="advantage-item">
                            <div class="advantage-icon">✓</div>
                            <div>Profesjonalne przygotowanie produktów</div>
                        </div>
                    </div>
                </div>
            </div>
        </div>
    </section>

    <section id="location" class="section location">
        <div class="section-content">
            <div class="section-title fade-in">
                <h2>Nasza Lokalizacja</h2>
            </div>
            <div class="location-content">
                <div class="location-info fade-in">
                    <h3>Magazyn i Prep Center</h3>
                    <p>Posiadamy własny magazyn oraz nowoczesne Prep Center zlokalizowane w Karnin, gdzie zapewniamy profesjonalne przygotowanie produktów zgodnie ze standardami Amazon.</p>
                    
                    <div class="contact-info">
                        <div class="contact-item">
                            <div class="contact-icon">📍</div>
                            <div>
                                <strong>Adres:</strong><br>
                                Karnin (66-446)<br>
                                ul. Lubuska 1
                            </div>
                        </div>
                        <div class="contact-item">
                            <div class="contact-icon">📞</div>
                            <div>
                                <strong>Telefon:</strong><br>
                                +48 667 995 271
                            </div>
                        </div>
                        <div class="contact-item">
                            <div class="contact-icon">✉️</div>
                            <div>
                                <strong>Email:</strong><br>
                                [email protected]
                            </div>
                        </div>
                    </div>
                </div>
                <div class="location-map fade-in">
                    <iframe
                        width="100%"
                        height="100%"
                        style="border:0;object-fit: cover;"
                        loading="lazy"
                        allowfullscreen
                        referrerpolicy="no-referrer-when-downgrade"
                        src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d2423.5532509019513!2d15.290193!3d52.6880711!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x4706e11fc7ed6563%3A0x830e441bbc87b803!2sPBIMK%20SHOP!5e0!3m2!1spl!2spl!4v1710284000000">
                    </iframe>
                </div>
            </div>
        </div>
    </section>

    <section id="contact" class="section contact">
        <div class="section-content">
            <div class="section-title fade-in">
                <h2>Skontaktuj się z nami</h2>
            </div>
            <div class="contact-form fade-in">
                <form id="contactForm">
                    <div class="form-group">
                        <label for="name" class="form-label">Imię i nazwisko / Firma</label>
                        <input type="text" id="name" class="form-control" required>
                    </div>
                    <div class="form-group">
                        <label for="email" class="form-label">Email</label>
                        <input type="email" id="email" class="form-control" required>
                    </div>
                    <div class="form-group">
                        <label for="phone" class="form-label">Telefon</label>
                        <input type="tel" id="phone" class="form-control">
                    </div>
                    <div class="form-group">
                        <label for="message" class="form-label">Wiadomość</label>
                        <textarea id="message" class="form-control" required></textarea>
                    </div>
                    <button type="submit" class="submit-button">Wyślij wiadomość</button>
                </form>
            </div>
        </div>
    </section>

    <footer>
        <div class="footer-content">
            <div class="footer-logo">PBIMK <span>SHOP</span></div>
            <p>Kompleksowe rozwiązania sprzedaży na Amazon</p>
            
            <div class="footer-nav">
                <ul>
                    <li><a href="#services">Usługi</a></li>
                    <li><a href="#about">O Nas</a></li>
                    <li><a href="#location">Lokalizacja</a></li>
                    <li><a href="#contact">Kontakt</a></li>
                </ul>
            </div>
            
            <div class="footer-social">
                <a href="#" class="social-icon">f</a>
                <a href="#" class="social-icon">in</a>
                <a href="#" class="social-icon">ig</a>
            </div>
            
            <div class="copyright">
                &copy; 2025 PBIMK SHOP. Wszelkie prawa zastrzeżone.
            </div>
        </div>
    </footer>

    <script>
        // Mobile Navigation Toggle
        const mobileToggle = document.getElementById('mobileToggle');
        const mainNav = document.getElementById('mainNav');
        
        mobileToggle.addEventListener('click', () => {
            mainNav.classList.toggle('active');
        });
        
        // Smooth Scrolling for Navigation Links
        document.querySelectorAll('a[href^="#"]').forEach(anchor => {
            anchor.addEventListener('click', function(e) {
                e.preventDefault();
                
                const targetId = this.getAttribute('href');
                if (targetId === '#') return;
                
                const targetElement = document.querySelector(targetId);
                if (targetElement) {
                    window.scrollTo({
                        top: targetElement.offsetTop - 70,
                        behavior: 'smooth'
                    });
                    
                    // Close mobile menu if open
                    mainNav.classList.remove('active');
                }
            });
        });
        
        // Header Scroll Effect
        const header = document.getElementById('header');
        let lastScrollY = 0;
        
        window.addEventListener('scroll', () => {
            const scrollY = window.scrollY;
            
            if (scrollY > 50) {
                header.style.backgroundColor = 'rgba(255, 255, 255, 0.95)';
                header.style.boxShadow = '0 2px 10px rgba(0, 0, 0, 0.1)';
            } else {
                header.style.backgroundColor = 'var(--white)';
                header.style.boxShadow = '0 2px 10px rgba(0, 0, 0, 0.1)';
            }
            
            lastScrollY = scrollY;
        });
        
        // Form Submission (add real functionality as needed)
        const contactForm = document.getElementById('contactForm');
        
        contactForm.addEventListener('submit', (e) => {
            e.preventDefault();
            // Add actual form submission logic here
            alert('Dziękujemy za wiadomość! Skontaktujemy się z Tobą wkrótce.');
            contactForm.reset();
        });
        
        // Fade-in Animation
        const fadeElements = document.querySelectorAll('.fade-in');
        
        const fadeInObserver = new IntersectionObserver((entries) => {
            entries.forEach(entry => {
                if (entry.isIntersecting) {
                    entry.target.classList.add('visible');
                    fadeInObserver.unobserve(entry.target);
                }
            });
        }, {
            threshold: 0.1
        });
        
        fadeElements.forEach(element => {
            fadeInObserver.observe(element);
        });
    </script>
</body>
</html>
                               

Alan adının whois bilgisi

Domain Name: PBIMK.COM
Registry Domain ID: 2741713489_DOMAIN_COM-VRSN
Registrar WHOIS Server: whois.squarespace.domains
Registrar URL: http://domains2.squarespace.com
Updated Date: 2025-01-30T16:13:40Z
Creation Date: 2022-11-30T09:40:47Z
Registry Expiry Date: 2025-11-30T09:40:47Z
Registrar: Squarespace Domains II LLC
Registrar IANA ID: 895
Registrar Abuse Contact Email: [email protected]
Registrar Abuse Contact Phone: +1.6466935324
Domain Status: ok https://icann.org/epp#ok
Name Server: NS1.DNS-PARKING.COM
Name Server: NS2.DNS-PARKING.COM
DNSSEC: unsigned
URL of the ICANN Whois Inaccuracy Complaint Form: https://www.icann.org/wicf/
>>> Last update of whois database: 2025-05-23T11:11:04Z <<<
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