301 Moved ??

Discussion in 'Search Engine Optimization' started by ZCore13, Dec 17, 2008.

  1. #1
    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
     
    ZCore13, Dec 17, 2008 IP
  2. debach

    debach Banned

    Messages:
    229
    Likes Received:
    5
    Best Answers:
    0
    Trophy Points:
    0
    #2
    301 means permanently redirect to another address
     
    debach, Dec 17, 2008 IP
  3. sultanofseo

    sultanofseo Notable Member

    Messages:
    9,930
    Likes Received:
    405
    Best Answers:
    0
    Trophy Points:
    265
    #3
    i c yuor site just fine and there is no redirection
     
    sultanofseo, Dec 17, 2008 IP
  4. alokseo

    alokseo Active Member

    Messages:
    128
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    71
    #4
    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]
     
    alokseo, Feb 4, 2009 IP