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: bla.com Accept: */* User-Agent: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; [email protected])
<html xmlns="http://www.w3.org/1999/xhtml"> <head> <link rel="stylesheet" href="defstyle.css"> <title>The web site is under construction</title> </head> <body> <div id="PageOutline"> <h1>This web site has just been created and it is still under construction.</h1> <h2>The web site is hosted by <a href="http://www.lhseattle.com">Lighthouse Consulting</a>.</h2> </div> </body> </html>