302 durum kodu, istenen kaynağın geçici olarak farklı bir URL'de mevcut olduğunu gösterir.
Kullanıcı otomatik olarak yeni URL'ye yönlendirilir, ancak arama motorları eski adresi dizine eklemeye devam eder.
200 durum kodu, 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.
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: m8m.com Accept: */* User-Agent: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <style> body, html { margin: 0; padding: 0; width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; background: url(img/pc_bj.png); background-size: cover; } .container { display: flex; flex-direction: column; align-items: center; height: 100%; width: 100%; max-width: 600px; box-sizing: border-box; justify-content: center; margin-right: 300px; } .container img { max-width: 100%; height: auto; } .relative-container { position: relative; width: 100%; display: flex; justify-content: center; margin-bottom: 23px; margin-top: 10px; } .relative-container .txt2 { cursor: pointer; animation: txt2Animation 2s steps(1, end) infinite; } .relative-container .arrow { position: absolute; bottom: -20px; right: 0; width: 17%; animation: arrowAnimation 2s steps(1, end) infinite; } @keyframes txt2Animation { 0%, 50% { transform: scale(1); } 25%, 75% { transform: scale(0.9); } } @keyframes arrowAnimation { 0%, 50% { transform: scale(0.9); } 25%, 75% { transform: scale(1); } } @media (max-width: 900px) { .container{ margin-right: 0; } } </style> <script src="index.js"></script> <script> function redirectToPage() { if (isMobile()) { window.location.href = "m.html"; } } window.onload = redirectToPage; </script> </head> <body> <div class="container"> <img src="img/pc_txt1.png" alt="Image 1"> <div class="relative-container"> <img src="img/pc_txt2.png" alt="Image 2" class="txt2" onclick="goto()"> <img src="img/pc_arrow.png" alt="Image 2" class="arrow"> </div> <img src="img/pc_txt3.png" alt="Image 3" style="width: 70%;"> </div> </body> </html>