15 Mar

Search Engine Friendly Redirects – Directory Level

There are three articles dealing with redirects – see related posts for more information

If you are going to move a page you will likely want to redirect visitors to the old page to the new in such a method that the search engines don’t get confused. Some of the ways they can get confused include:

  • Bringing up two copies of the same page. This is likely to trip a duplicate content penalty.
  • Using a temporary redirect. This means ‘the page has moved but will be back shortly – don’t update your index’.

A 301 permanent redirect is the redirection method recommended by the major search engines. Using a 301 redirect you are in effect telling the search engines the page has moved and to update their index. It also has the nice side benefit of redirecting the benefit of inbound links to the new page.

Implementing a 301 permanent redirect is different depending on the operating system you are using on your server:

IIS Redirect

  • In internet services manager, right click on /old-directory
  • Select the radio titled “a redirection to a URL”.
  • Enter the redirection page.
  • Check “The exact url entered above” and the “A permanent redirection for this resource”
  • Click on ‘Apply’

Apache Redirect

Create a file called .htaccess in your root directory and add the following line:

Redirect 301 /old-directory/ http://www.mywebsite.com/new-directory/

Leave a Reply

Your email address will not be published. Required fields are marked *