8 replies
  • SEO
  • |
Hello Experts,

Hope all is gona well!!

I have a query, how can I use 301 redirection on my website? What does its significance?

Thank you all in advance !

Regards:
Summer
#301 #redirection
  • Profile picture of the author murrad
    use it on your .htaccess file...it is to maintain your search engine rankings.

    RewriteEngine on
    rewritecond %{http_host} ^domain.com [nc]
    rewriterule ^(.*)$ http://www.domain.com/$1 [r=301,nc]

    For more information - read here: 301 Redirect - How to create Redirects

    Hope this helps.
    Signature

    Environment friendly Paper cup machine

    {{ DiscussionBoard.errors[5047417].message }}
  • Profile picture of the author rakhi
    301 redirection is the most efficient method for webpage redirection.The code "301" is interpreted as moved permanently.A 301 redirection is used when a website is moved to a new domain name. It preserves the search engine rankings that the site had at previous domain.
    {{ DiscussionBoard.errors[5047611].message }}
  • Profile picture of the author ExploringInfinity
    I use 301s any time I move a page to a different URL.

    Sometimes if I run into problems with a domain, I will 301 the entire site to a new domain that is similar to the first one. This is a good thing to do if you need to 'start fresh' with a new domain but don't want to lose all of the work you've put into building backlinks to the first domain.

    You can also use 301s from old high PR domains to push link juice to a new domain in a sneaky way, but I wouldn't recommend doing that too frequently as it's likely for Google to monitor this type of thing if they see dozens of high pr 301 redirects coming in to a new site. Especially if the 301'd urls are not related to the content it redirects to.
    Signature
    Get ALL the SEO software YOU CANT afford:
    Ultimate SEO Pack
    SENuke & Grscraper, and dozens more! $40 a month!
    {{ DiscussionBoard.errors[5047670].message }}
  • Profile picture of the author webdevpro
    You should have a strong reason of doing 301 redirection. As it will wipe out the old url from search indexes completely and will transfer its value (like PR) to the new url. It is only worth the effort if your old url has some significance and you want to preserve it while moving to a new url.

    For various redirection techniques you can refer to: How to 301 Redirect a Web Page - 301 Redirect Methods
    {{ DiscussionBoard.errors[5070012].message }}
  • Profile picture of the author summerfranken
    Can any body explain the process by coding???
    {{ DiscussionBoard.errors[5074288].message }}
    • Profile picture of the author chandan_dutta
      Originally Posted by summerfranken View Post

      Can any body explain the process by coding???
      Coding??? It's already provided above. You need to edit your .htaccess file and then add the code. You can edit this file through cPanel but be careful while editing it.

      Plus, if you are doing 301 for a wordpress blog, you can use 301 Redirect Plugin. You can do 301 as below:

      Old Domain Page -> 301 -> New Domain Page
      Old Domain -> 301 -> New Domain
      {{ DiscussionBoard.errors[5074600].message }}
    • Profile picture of the author Guru SEO
      Originally Posted by summerfranken View Post

      Can any body explain the process by coding???

      You can also get free 301 redirect plugins if you search, but it's more efficient directly in the .htaccess.
      {{ DiscussionBoard.errors[5074916].message }}
  • Profile picture of the author marshal france
    Banned
    [DELETED]
    {{ DiscussionBoard.errors[5075410].message }}
  • Profile picture of the author jameliberal
    May one please edit my htacees of script using in sub directory .here is default htacess of a script

    RewriteEngine on

    RewriteBase /
    # if you installed in a subdir use something like below and remove the line above
    #
    # RewriteBase /subdirectory/

    RewriteRule ^admin/$ index.php/admin/login/
    RewriteRule ^admin$ index.php/admin/login/

    RewriteCond $1 !^(index\.php|application/images|application/scripts|application/css|application/content|application/settings|favicon.ico)
    RewriteRule ^(.*)$ index.php/$1
    {{ DiscussionBoard.errors[5123150].message }}

Trending Topics