Hi, Can anyone help me? I recently purchased a domain name and have just put a blog on it. When I look up the website info and pagerank validity it says 301 Moved for the status. I don't know what that means and why it's not just saying "OK". I own the domain and have the DNS pointed to my server like all my other websites. The website is slightlyjaded (dot) com. Does anyone know why I would be getting this status and how I can make it normal? Thanks, ZCore13
permanently moved and redirected to another web example: Redirect in ColdFusion: <.cfheader statuscode="301" statustext="Moved permanently"> <.cfheader name="Location" value="http://www.new-url.com"> Redirect in PHP: <? Header( "HTTP/1.1 301 Moved Permanently" ); Header( "Location: http://www.new-url.com" ); ?> Redirect in ASP: <%@ Language=VBScript %> <% Response.Status="301 Moved Permanently" Response.AddHeader "Location", " http://www.new-url.com" > Redirect in ASP .NET: <script runat="server"> private void Page_Load(object sender, System.EventArgs e) { Response.Status = "301 Moved Permanently"; Response.AddHeader("Location","http://www.new-url.com"); } </script> .htaccess Redirect Options +FollowSymLinks RewriteEngine on RewriteRule (.*) http://www.newdomain.com/$1 [R=301,L]