301 http code means that the requested resource has been permanently moved to a new URL. All future requests should use the new address.
The browser will automatically redirect the user to the new address, and search engines will update their indexes.
200 http 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: jsr.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> <title>JSR.COM</title> <link href="https://social.jsr.com/@jsr" rel="me"> <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" integrity="sha384-TX8t27EcRE3e/ihU7zmQxVncDAy5uIKz4rEkgIXeMed4M0jlfIDPvg6uqKI2xXr2" crossorigin="anonymous"> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <link rel="stylesheet" type="text/css" href="main.css"> </head> <body> <div class="page-guff"> <div class="container"> <h1 class="text-center font-weight-bold"> John S. Russell </h1> <p class="text-center"> JSR is a semi-retired professional (citation needed) network engineer, and a semi-retired Internet asshole (no citation needed). </p> </div> </div> <br><br> <div class="container"> <div class="row justify-content-center"> <div class="col-lg-3"> <a href="https://social.jsr.com/@jsr"><img src="imgsquares/twitter_200x200.jpg" style=" width: 200px; height: 200px;" class="img-polaroid"></a> <div> <p> <br> <a rel="me" href="https://social.jsr.com/@jsr">[email protected] on Mastodon</a> <br> <br> </p> </div> </div> <div class="col-lg-3"> <a href="http://www.instagram.com/jsrnz"><img src="imgsquares/instagram_200x200.jpg" style=" width: 200px; height: 200px;" class="img-polaroid"></a> <div> <p> <br> <a href="http://www.instagram.com/jsrnz/"> @jsrnz on Instagram </a> <br> <br> </p> </div> </div> <div class="col-lg-3"> <a href="https://blog.jsr.com"><img src="imgsquares/blog_200x200.jpg" style=" width: 200px; height: 200px;" class="img-polaroid"></a> <div> <p> <br> <a href="https://blog.jsr.com"> JSR's Blog </a> <br> <br> </p> </div> </div> <div class="col-lg-3"> <a href="https://bsky.app/profile/jsr.com"><img src="imgsquares/bluesky_logo.png" style=" width: 200px; height: 200px;" class="img-polaroid"></a> <div> <p> <br> <a href="https://bsky.app/profile/jsr.com"> @jsr.com on Bluesky </a> <br> <br> </p> </div> </div> </div> </div> <footer class="page-footer"> <div class="container"> <!-- <div class="pagination-centered well"> <div class="col-lg-4 col-md-4 col-sm-12"> --> <h6 class="text-center font-weight-bold">Contact</h6> <p class="text-center">[email protected]</p> </div> </footer> <script src="main.js"></script> </body> <script src="https://code.jquery.com/jquery-3.6.0.min.js" crossorigin="anonymous"></script> <script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-ho+j7jyWK8fNQe+A12Hb8AhRq26LrZ/JpcUGGOn+Y7RsweNrtN/tE3MoK7ZeZDyx" crossorigin="anonymous"></script> </html>