http status code 301 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.
http status code 200 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: idh.com Accept: */* User-Agent: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; [email protected])
<!DOCTYPE html> <html lang="en-US"> <head> <meta name="viewport" content="width=device-width"> <meta name="robots" content="noindex, nofollow" /> <title>Interactive Design House, Inc. — Coming Soon</title> <script src="https://idh.com/wp-includes/js/jquery/jquery.js"></script> <style type="text/css">* { box-sizing: border-box; -moz-box-sizing: border-box; -webkit-box-sizing: border-box; } body { background-color: white; color: black; overflow-x: hidden; margin: 0; } #wrap { align-items: center; display: flex; justify-content: center; min-height: 100vh; } .content { flex: 1; margin: auto 5%; padding: 0; text-align: center; max-width: 420px; } footer { width: 100%; position: fixed; bottom: 0; left: 0; } footer p { text-align: center; } .btn { background: black; background-image: none; border: 1px solid black; box-shadow: none; color: white; cursor: pointer; display: inline-block; font-size: 14px; font-weight: 400; line-height: 1.5; margin-top: 10px; padding: 6px 30px; text-align: center; text-decoration: none; touch-action: manipulation; transition: all 0.2s ease; user-select: none; vertical-align: middle; white-space: nowrap; } .status-message { display: none; }</style> <link rel="stylesheet" href="https://idh.com/wp-content/plugins/bluehost-wordpress-plugin/assets/styles/coming-soon.css?v=4.3.2" /> </head> <body> <div id="wrap"> <main class="content"> <div class="subscription_widget"> <h1>Coming Soon!</h1> <h2>A New WordPress Site</h2> <p class="comingsoon_links"><a href="https://www.bluehost.com/blog/how-to-create-a-website-guide/" target="_blank" rel="noopener noreferrer nofollow">How to Build a Website: A Practical Guide to WordPress on Bluehost</a><br /><a href="https://www.bluehost.com/blog/how-to-migrate-a-wordpress-website-to-a-new-server/" target="_blank" rel="noopener noreferrer nofollow">How to Migrate a Website to Bluehost?</a><br /><a href="https://www.bluehost.com/hosting/shared" target="_blank" rel="noopener noreferrer nofollow">Why choose Bluehost for your WordPress site?</a><br /></p> <div id="subscribe-text"> <p>Be the first to know when we launch, enter your email address and we will let you know when we go live and any future website updates we have.</p> </div> <div id="success" class="status-message"> Thank you, please check your email to confirm your subscription. </div> <div id="error-active" class="status-message"> Your email address is already subscribed to this website. Stay tuned to your inbox for our updates or try a different email address. </div> <div id="error-invalid" class="status-message"> There was an error with your submission and you were not subscribed. Please try again with a valid email address. </div> <form action="" method="post" accept-charset="utf-8" id="subscribe"> <input type="hidden" name="action" value="newfold_coming_soon_subscribe"> <input type="hidden" id="newfold-nonce-coming-soon-subscribe" name="newfold-nonce-coming-soon-subscribe" value="7700d5a333" /><input type="hidden" name="_wp_http_referer" value="/" /> <span class="inputs email" id="subscribe-email"> <label id="subscribe-label" for="subscribe-field"> Email </label> <input type="email" name="email" required="required" value="" id="subscribe-field" placeholder="Enter your email address" > </span> <span class="inputs submit" id="subscribe-submit"> <input class="btn" type="submit" value="Subscribe" name="subscriptions_widget"> </span> </form> <script> var ajaxscript = { ajax_url: 'https://idh.com/wp-admin/admin-ajax.php' }; jQuery(document).ready(function ($) { $('#subscribe-submit input').click(function (e) { e.preventDefault(); $('#success').hide(); $('#error').hide(); var email = $('#subscribe-field').val(); var nonce = $('#newfold-nonce-coming-soon-subscribe').val(); $.ajax({ type: 'POST', url: window.ajaxscript.ajax_url, data: { 'action': 'newfold_coming_soon_subscribe', 'email': email, 'nonce': nonce }, success: function (response) { var status = response.status; if (status == 'success') { $('#success').show(); } else if (status == 'active') { $('#error-active').show(); } else if (status == 'invalid_email') { $('#error-invalid').show(); } else { $('#error-invalid').show(); } }, }); }); }); </script> </div> </main> </div> <footer> <p class="text-center"> A <a href="https://bluehost.com?utm_source=coming-soon-template&utm_medium=bluehost_plugin" target="_blank" rel="noopener noreferrer nofollow">Bluehost</a> powered website. Is this your website? Log in to <a href="https://idh.com/wp-login.php">WordPress</a> or <a href="https://my.bluehost.com/web-hosting/cplogin" target="_blank" rel="noopener noreferrer nofollow">Bluehost</a>. </p> </footer> </body> </html>