308 Permanent Redirect, 301'den farklı olarak, istek yönteminin değişmeden kalmasını sağlayan kalıcı bir yönlendirmedir.
Kullanıcı kalıcı olarak yeni URL'ye yönlendirilir ve istek yöntemi aynı kalır.
GET / HTTP/1.1 Host: rgk.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>rgk.com</title> <link rel="apple-touch-icon" sizes="180x180" href="assets/favicon/apple-touch-icon.png" /> <link rel="icon" type="image/png" sizes="32x32" href="assets/favicon/favicon-32x32.png" /> <link rel="icon" type="image/png" sizes="16x16" href="assets/favicon/favicon-16x16.png" /> <link rel="manifest" href="assets/favicon/site.webmanifest" /> <meta name="msapplication-TileColor" content="#da532c" /> <meta name="theme-color" content="#172537" /> <style> @font-face { font-family: GreycliffCFExtraBold; font-style: bold; font-weight: 800; src: url("assets/fonts/GreycliffCFExtraBold/font.woff"); } @font-face { font-family: Urbandale-Medium; font-style: bold; font-weight: 500; src: url("assets/fonts/UrbandaleMedium/font.woff"); } @font-face { font-family: Urbandale-Regular; font-style: normal; font-weight: 400; src: url("assets/fonts/UrbandaleRegular/font.woff"); } .slide-top { } html, body { height: 100%; overflow-y: hidden; } body { margin: 0; background-color: #000026; } .flex-container { height: 96%; padding: 0; margin: 0; display: flex; align-items: center; justify-content: center; } .row { width: auto; } .flex-item { font-family: GreycliffCFExtraBold, sans-serif; padding: 20px; margin: 10px; margin-top: 200px; line-height: 20px; color: #ffffff; font-weight: 500; font-size: 14vmin; text-align: center; -webkit-animation: slide-top 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 500ms both; animation: slide-top 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 500ms both; } /* ---------------------------------------------- * Generated by Animista on 2024-2-27 23:14:39 * Licensed under FreeBSD License. * See http://animista.net/license for more info. * w: http://animista.net, t: @cssanimista * ---------------------------------------------- */ /** * ---------------------------------------- * animation slide-top * ---------------------------------------- */ @-webkit-keyframes slide-top { 0% { -webkit-transform: translateY(0); transform: translateY(0); opacity: 0; } 100% { -webkit-transform: translateY(-30px); transform: translateY(-30px); opacity: 1; } } @keyframes slide-top { 0% { -webkit-transform: translateY(0); transform: translateY(0); opacity: 0; } 100% { -webkit-transform: translateY(-30px); transform: translateY(-30px); opacity: 1; } } @-webkit-keyframes slide-top2 { 0% { -webkit-transform: translateY(0); transform: translateY(0); opacity: 0; } 100% { -webkit-transform: translateY(-15px); transform: translateY(-15px); opacity: 1; } } @keyframes slide-top2 { 0% { -webkit-transform: translateY(0); transform: translateY(0); opacity: 0; } 100% { -webkit-transform: translateY(-15px); transform: translateY(-15px); opacity: 1; } } .flex-item-email { font-family: Urbandale-Regular, sans-serif; padding-bottom: 4px; padding-left: 0px; padding-right: 0px; margin: 10px; line-height: 20px; color: rgb(89, 207, 34); font-weight: 500; font-size: 2.5vmin; text-align: center; margin-top: 80px; -webkit-animation: slide-top 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 800ms both; animation: slide-top 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 800ms both; } @media only screen and (max-width: 600px) { .flex-item { margin-top: 70px; } .flex-item-email { margin-top: 20px; font-size: 5vw; } @-webkit-keyframes slide-top2 { 0% { -webkit-transform: translateY(0); transform: translateY(0); opacity: 0; } 100% { -webkit-transform: translateY(-25px); transform: translateY(-25px); opacity: 1; } } @keyframes slide-top2 { 0% { -webkit-transform: translateY(0); transform: translateY(0); opacity: 0; } 100% { -webkit-transform: translateY(-25px); transform: translateY(-25px); opacity: 1; } } } .flex-item-email a { padding-bottom: 4px; padding-left: 0px; padding-right: 0px; margin: 10px; line-height: 20px; color: rgb(185, 185, 185); text-align: center; margin-top: 100px; text-decoration: none; padding-bottom: 4px; padding-left: 0px; padding-right: 0px; } .flex-item-email a:hover { padding-bottom: 4px; padding-left: 0px; padding-right: 0px; margin: 10px; line-height: 20px; color: rgb(255, 255, 255); text-align: center; margin-top: 100px; border-bottom: 1px solid rgb(255, 255, 255); } .flex-item-company-logo { height: 3%; display: flex; justify-content: center; flex-direction: column; justify-content: flex-end; align-self: last baseline; justify-content: center; align-items: center; -webkit-animation: slide-top2 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 1400ms both; animation: slide-top2 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 1400ms both; } </style> </head> <body> <div class="flex-container"> <div class="row"> <div class="flex-item"><div>rgk.com</div></div> <div class="flex-item-email"> <a href="mailto:[email protected]">Inquiries: [email protected]</a> </div> </div> </div> <div class="flex-item-company-logo"> <a href="https://www.newreach.com/" target="_blank" ><img style="width: 34px" src="assets/logo-newreach.png" alt="Newreach logo" /></a> </div> </body> </html>