302 status code indicates that the requested resource is temporarily available at a different URL.
The user is automatically redirected to the new URL, but search engines continue to index the old address.
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.
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: aut.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, shrink-to-fit=no"> <meta name="description" content=""> <meta name="author" content=""> <link rel="icon" href="favicon.ico"> <title>Home - AUT, Inc. (Advanced Universal Technologies, Inc.)</title> <link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-KyZXEAg3QhqLMpG8r+8fhAXLRk2vvoC2f3B09zVXn8CA5QIVfZOJ3BCsw2P0p/We" crossorigin="anonymous"> </head> <body> <main role="main"> <div style="display:flex; justify-content:center; margin:0; background-color:white;"> <div style="display:flex; flex-direction:column; color:white; width:1440px;"> <!--------------> <div style="display:flex; flex-direction:column; margin-left:1rem;"> <div style="padding:0.7rem 0;"> <img style="width:120px;" src="images/aut_logo_lg.png" alt="Advanced Universal Technologies, Inc. (AUT) logo"> </div> <div style="color:#4092cc; font-family:arial; font-size:1.1rem; font-weight:550;"> Advanced Universal Technologies, Inc. </div> <div style="color:#615a5b; font-family:arial; font-size:0.82rem; font-weight:450;"> Total Business Solutions and Online Marketing Services</p> </div> </div> <div style="color:#888; text-align:center; margin-top:2rem;"> <h1 style="font-size: 2.5rem;">Awesome Website in the Works!</h1> </div> <div style="color:#888; text-align:center;"> <p style="font-size:1.25rem; font-weight: 300;"> Great things are happening. Stay tuned for what we've got for you. </p> </div> <!--------> </div> </div> </main> <script> function get_copyright_yy() { copyrightDate = new Date(); copyrightYear = copyrightDate.getFullYear(); document.write(copyrightYear); } </script> <style> .footer { position: fixed; left: 0; bottom: 0; color: white; text-align: center; width: 100%; background-color:#124e78; } </style> <footer class="footer"> <div style="display:flex; justify-content:center; margin:0;"> <div style="display:flex; flex-direction:column; color:white; width:1440px;"> <!--------------> <div style="display:flex; flex-direction:column; margin:18px; padding-top:1rem;"> <p style="text-align:left; width:100%;"> Please direct any questions or comments about this site to <a style="color:white;" href="mailto:[email protected]">[email protected]</a> </p> <p style="text-align:right; width:100%;"> Copyright 1996- <script type="text/javascript" language="JavaScript"> get_copyright_yy(); </script> AUT, Inc. All Rights Reserved. </p> </div> <!--------> </div> </div> </footer> </body> </html>