Page 2 of 2 FirstFirst 12
Results 16 to 18 of 18

 

Thread: What is a 301 redirect?

  1. #16
    Registered User

    Status
    Offline
    Join Date
    Feb 2010
    Posts
    1,392
    Thanks
    62
    Thanked 142 Times in 131 Posts


    Quote Originally Posted by pustema View Post
    Q1, how can you check to see if Google sees 2 versions

    Q2, how is Google given it's almost unimaginable resources not smart enough to realise they are the same site?
    I've yet to see an example where they do actually think it's two sites but becuase it could technically be two sites then it's just good practice I guess.

    If you can access your site with both versions then sooner or later google are going to do the same - if you have a redirect in place then they won't.

  2. #17
    euraffiliates's Avatar
    Registered User

    Status
    Offline
    Join Date
    Apr 2011
    Posts
    130
    Thanks
    9
    Thanked 7 Times in 7 Posts
    Quote Originally Posted by Dazza30 View Post
    I was given this advice today but i dont know what a 301 redirect is, can some one please tell me?
    It is a special server side URL redirection to tell the User-Agent (browser or serach engine crawlers) that page has moved from this location permanently. Since the redirection occurs with sending minimum http header information to the User-Agent, it takes minimum time to get redirected.

    Now the question is, why “301 redirection” is so much important to a site owner. There is a valid reason for it.

    Search engines simply transfer the SEO credibility of the former URL to the redirected URL. So, if you change a page name of your old pages, it is a wiser decision to arrange for a 301 redirection for each old page URLs to a new page URL. If you do not do 301 redirect for your old pages, the search engines will treat all new pages a brand new pages and you will simply lose the associated SEO credibility of your old pages. Most of all the visitors will get “404 not found” pages when they come to the old pages from the search engines.

    The best way of implementing a “301 redirection” is placing few lines of code at .htaccess file for an apache web server. The code may differ depending on the redirection requirement. You may know more at 301 Redirects and www/non-www Canonical Problems

    If you are running an ASP.NET site you can manage it at the web.config file. Just edit the XML files with its syntax.

    In fact you can do it writing script (PHP or ASP.NET) too.

    Hope this will give a general idea on 301 redirection.

    Thanks
    Lutfal Hoque, Affiliate Solutions Specialist, Euraffiliates.Com - The Next-G Affiliate Software. 1+ Year Free Trial!
    More Affiliate Sales? ... Download the Affiliate Marketing Cookbook for Merchants.

  3. #18
    Registered User

    Status
    Offline
    Join Date
    Jun 2011
    Posts
    2
    Thanks
    0
    Thanked 0 Times in 0 Posts
    Quote Originally Posted by Dazza30 View Post
    If you're using shared hosting Fasthosts won't do anything, and you'll have to use the meta tag method which works fine.
    I opted for tweaking the web.config file as below:

    Code:
    <system.webServer>
      <rewrite>
        <rules>
          <rule name="Redirect to WWW" stopProcessing="true">
             <match url=".*" />
             <conditions>
               <add input="{HTTP_HOST}" pattern="^gazoomy.com$" />
             </conditions>
             <action type="Redirect" 
                     url="http://www.gazoomy.com/{R:0}" 
                     redirectType="Permanent" />
           </rule>
         </rules>
       </rewrite>
    </system.webServer>
    Worked perfectly.

Page 2 of 2 FirstFirst 12


Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. Replies: 3
    Last Post: 08-07-08, 01:56 PM
  2. Replies: 2
    Last Post: 23-04-08, 01:26 PM
  3. 301 Redirect
    By seekituk in forum Affiliate Marketing Lounge
    Replies: 3
    Last Post: 15-04-07, 01:40 PM
  4. How many 301 redirects is too many?
    By smn2 in forum Programming
    Replies: 2
    Last Post: 25-10-06, 05:09 PM
  5. Permanent redirects (301) in Google
    By darrenw in forum Programming
    Replies: 3
    Last Post: 17-04-04, 08:47 PM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
To Top

Content Relevant URLs by vBSEO 3.5.0 RC2