Main Menu
Articles Home
Most Popular Articles
Top Authors
Submit Articles
Submission Guidelines
Link to Us
Bookmark
Contact Us

Articles Categories
  ·  Adsense
  ·  Affiliate Programs
  ·  Article Marketing
  ·  Banner Advertising
  ·  Click Bank
  ·  Directories
  ·  Drop Shipping
  ·  Email
  ·  Ezines and Newsletters
  ·  Link Popularity
  ·  Pay Per Click
  ·  Search Engine Marketing
  ·  Search Engine Optimization
  ·  Site Promotion
  ·  Viral Marketing
 


Partners
 
Home / Internet Marketing / Search Engine Optimization

301 Redirect - The SEO way to rename or move files or folders

By:Andrei Smith


In this article I will discuss page redirection techniques, what works and what to avoid.



What is page redirection and why would you want to use it?



Let’s say you rename a page on your website, for whatever reason. Perhaps you decided to revamp your entire naming convention, perhaps you decided to restructure your site and need to move pages into different folders, or you just realized that you are missing valuable keywords.



Let’s elaborate a bit on the keywords issue, since it is part of your search engine ranking success.



Let’s say the page in question is about customized USB drives and you named it page1.htm. Then you read some SEO (Search Engine Optimization) articles and you found out that some search engines use words in the actual file name as search keywords. Next time you do a Google search, take a look at the results, most will have words in the actual file name (in the URL section) bolded, denoting a keyword match. Your USB drives page will definitely benefit if named something like custom_usb_drives.htm instead.



Now that you renamed your page, you just created a symphony of issues for yourself, for your users and for your position in search engine results.



Linking issues:



You will have to point every link on your site to the new page name. If your site is small, it should not be a big deal, but if your site is large, you will inevitably make mistakes, mainly forgetting a link or two. This will result in visitors getting the dreaded “404 page not found” error when clicking on your links, robots (also know as crawlers or spiders) avoiding you, etc. Also, if you are heavily relying on visitors from search engines, then again, people will get a “404 page not found error”.



Let’s use the previous example, for a long time your page1.htm was indexed by major search engines. If someone types “custom usb drives” in a search engine box, your page shows up on the first search results screen. That is fantastic, only if someone clicks on the link, they will be pointed to page1.htm, not to custom_usb_drives.htm, because the first page is the one in the search engine’s index. It will take time, sometimes months, before the search engines update their indexes with your new page name.



Lost Page Rank (PR) issues:



Google developed a proprietary algorithm that assigns a Page Rank (PR) to every page on the web. PR is a number from 1 to 10 (10 being the ideal) and is intended to be a representation of how useful and popular a given page is. PR is influenced by many factors, one of the crucial ones being Link Popularity. Link Popularity is a representation of how many “quality” or “relevant” sites link to your page. Without getting into too much detail, it is increasingly difficult and time consuming to achieve a high PR for your pages, especially if you don’t have a really unique website with exceptional and highly sought after content. If you are merely operating a commercial site, in a competitive market (such as selling custom branded USB drives, as in our example), then it takes a lot of time and hard work to build a good page PR.



When you rename a page and discard the old page, you also discard the PR of the page. Your renamed page will be seen as a totally new page, with 0 PR.



What is the solution?



I will start by enumerating some of the methods used by the non-initiated.



Not recommended solution 1: Duplicate content.



First thing that probably comes in you mind is: well, why can’t you just duplicate the page and let nature take its course. In other words, you will have two identical pages, one named page1.htm and one custom_usb_drives.htm. This gives you time to update all links and the search engines will eventually index the new page.



This solution is not viable because search engines will penalize you quite badly, ‘thinking’ that you are trying to scam them by using the ‘duplicate content’ technique.



Not recommended solution 2: Custom error message.



You could create a custom error page. However, you will lose rankings on the next search engine update as the file will appear to be non-existent. As discussed above, it could be some time before the page with the new name will be indexed and will appear in people’s searches. Also, your web site visitors will be frustrated by the fact that they now have to dig through your site to find the desired information.



Not recommended solution 3: An HTML Meta redirect.



You could implement a so called Meta refresh in a blank or customized page that has the name of the old page (in our example, page1.htm) that points to the new page. The redirect can be instant, or delayed by a predetermine amount of time. The delayed redirect has the advantage that you can place an extra message, such as “please be aware that the page you are looking for changed location….. etc., etc…. you will be redirected automatically to the new location”



In the past, this was probably the most used technique.



Without getting into the mechanics of the Meta redirect, which is basically a META tag statement you ad to your HEADER section, know that there are also Java Script techniques that achieve similar results.



What is bad about this is that this is a technique often used by spammers to trick search engines and it should be avoided, unless the page is in a section of your site that isn't indexed (also known as spidered or crawled). Search engine spammers create a page that is optimized for certain keywords and phrases - it usually has no real content. The page is then picked up by some search engines, but when a visitor clicks on the search engine entry, they are redirected to another site, often unrelated. Most search engines have filters to detect this. Using this form of search engine deception will see a site eventually banned or penalized by major players such as Google.



The recommended redirect strategy - 301 Redirect



A 301 redirect is the most efficient, visitor friendly, robot (spider, crawler) friendly and search engine friendly solution around for web sites that are hosted on servers running Apache. If you are not sure, check with your hosting provider.



A 301 redirect is just a set of commands you type into your .htaccess file.



When a visitor (whether human or robotic) requests a web page via any means, your web server checks for a .htaccess file. The .htaccess file contains specific instructions for certain requests, including security, redirection issues and how to handle certain errors.



The code "301" is interpreted as "moved permanently". After the code, the URL of the missing or renamed page is noted, followed by a space, then followed by the new location or file name.



First of all, you'll need to find the .htaccess file in the root directory of where all your web pages are stored. If there is no .htaccess file there, you can create one with Notepad or a similar application. Make sure when you name the file that you remember to put the "." at the beginning of the file name. This file has no tail extension.



Some hosting providers offer redirect services through their “control panels”, so you don’t have to perform low level changes on the .htaccess file itself. Instead, they provide a user friendly interface for this. Check with your hosting provider to see what the optimal way to perform a 301 redirect is in your case. I will continue the article with the barebones solution.



If there is a .htaccess file already in existence with lines of code present, be very careful not to change any existing line unless you are familiar with the functions of the file.



Scroll down past all the existing code, leave a line space, then create a new line that follows this example:



redirect 301 /folder/page1.htm http://www.you.com/folder/custom_usb_drives.htm



It's as easy as that. Save the file, upload it back into your web and test it out by typing in the old address to the page you've changed. You should be instantly and seamlessly transported to the new location.



Notes: Be sure not to add "http://www" to the first part of the statement - just put the path from the top level of your site to the page. Also ensure that you leave a single space between these elements:



redirect 301 (the instruction that the page has moved)



/folder/page1.htm (the original folder path and file name)



http://www.you.com/folder/custom_usb_drives.htm (new path and file name)



The same format applies not only to renamed files, but also to files moved to a different location.



The 301 redirect is the safest way to preserve your rankings. On the next indexing (crawling, spidering), the search engine robot will obey the rule indicated in your .htaccess file and index the new page name every time a link or its internal database tries to access the old page. In the next update (again, this could take months), the old file name and path will be dropped and replaced with the new one. Sometimes you may see alternating old/new file names during the transition period, along with some possible fluctuations in rankings as things settle. Don't panic, this is normal.



What if your site is hosted on a Microsoft IIS server instead?



If you have access to the server, do this: In internet services manager, right click on the file or folder you wish to redirect. 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 "Apply".



If you do not have access to the server, ask your host to point you into the right direction.



In conclusion, the best and the most transparent way (to both human and robotic users) to rename and move files on your web site, while preserving your search engine ranks is the 301 redirect.



Digg del.icio.us Blink Stumble Spurl Reddit Netscape Furl

Article keywords: page redirect, redirect, page rename, rename, website, web, site, web site, robot, spider, htaccess, 301, 301 redirect, 404, meta redirect, meta refresh, java redirect

Article Source: http://www.articles2k.com

---
Andrei co-owns bsleek - www.bsleek.com – a site that specializes in web hosting, design, promotional items, printing, CD presentations, tradeshow displays, corporate identity marketing and more. Andrei has amassed an extensive technical knowledge and experience through his career as the CIO for a major travel management company and through his past careers in military research, data acquisition and aerospace engineering. He also consults for www.trinityinvestigations.com, a New York based PI firm.









Top Search Engine Optimization Articles
  • 1). High Paying Lateral Keywords  By : Matthew C. Keegan
    If you run AdSense on your site you know that some words pay more than others, much more in fact. More than likely you have also learned that terms like "structured settlements" and "mesothelioma" can produce incredibly high PPC revenue, if they show up on your site at all. Unfortunately hundreds of thousands of other webmasters are "on" to this practice judging by the number of sites created regularly to capitalize on the phenomenom.

  • 2). Creating Sitemaps For Google, MSN AND Yahoo! - The Easy Way  By : Philip Nicosia
    If you own or maintain a website or intend to own one, wouldn’t it be great if you get frequent visitors who find satisfaction in getting exactly the information they need from your page? While that satisfaction largely depends on the contents of your website, how you get to be accessed by website users is the most critical factor of website development.

  • 3). How To Stand A Chance In The Search Engine Optimization Maze  By : bluecharm
    Despite all the other methods available for obtaining a decent web ranking for your website, for instance, link exchanges, search engine optimization or SEO is still regarded as the way to go to ensure that your website is listed high in the search engine rankings. Search engine optimization is a method of analyzing your site and modifying it to allow search engines to read and index it.

  • 4). Link Exchange and Search Engine Optimization  By : Bill Boyd
    Here’s an overview of how exchanging links can improve our search engine ranking. I believe Exchanging Links is one of, if not “the” best way to market your site online! Read below to see why. Some people believe that in order to be successful online they have to direct thousands of targeted visitors to their site. TRUE They also believe that they have to spend all their time adjusting the scripts and contents of their pages, to make the search engines spider them and rank them well.

  • 5). Black Hat SEO – What Never To Do Or Get Banned  By :
    While there are many legitimate skills in SEO there are also those that can work but if you get caught using them the results can be disastrous. When search engine optimization became an issue many techniques were employed because at that point the search engines used a much simpler algorithm. As these tricks were used to exploit the simpler algorithms they were also served to make them more advanced.

  • 6). An SEO Glossary - Common SEO Terms Defined  By : Glenn Murray
    Search Engine Optimization (SEO) has become an essential weapon in the arsenal of every online business. Unfortunately, for most business owners and marketing managers (and even many webmasters), it's also somewhat of an enigma. This is partly due to the fact that it's such a new and rapidly changing field, and partly due to the fact that SEO practitioners tend to speak in a language all of their own which, without translation, is virtually impenetrable to the layperson.

  • 7). The Best Web Marketing Secrets  By : Allen Brown
    Are you stuck up with lower down the sales? Not improving or upgrading your sale to higher scale? Do not worry! You are at the right place to get the Right Solution. We have magic wand to boost your sell. Your profit and sales will surely increases to your wish as you apply it. Do not worry you may be marketing in any form, i.e. may be through web, or by printed form or in personal way.

  • 8). Organic SEO And Link Building  By : John Tourloukis
    Organic SEO or search engine optimization is a slow and steady process. Achieving top rankings takes time and link building is a big part of that effort. If you are to have a successful web site and obtain high search engine rankings you will need quality relevant web sites linking to your web site. The amount and quality of links you need will depend on the competitiveness of the keyword phrases for which you are optimizing.

  • 9). Keyword Specific Ads Equals Higher Search Engine Rankings  By : Joe Money
    Keywords are an essential component of producing a web site. These are the words which the search engines use to help categorize and rank your pages. For instance, if your website is about 'writing articles' then your keywords could include 'writing', 'articles', 'article writing' and so on. The advice from many web designers and search engine optimizers has been to find as many keywords as you can.


New Search Engine Optimization Articles
  • 5). The Benefits of SEO  By : Robby
    SEO stand for Search Engine Optimization. It's a fancy term that means a website is user friendly to search engines bots. When you use SEO on a site you fix the site's meta tags, title, discription, and even the body of the index page, among other things to give the bots the best possible idea what your page is about and how relevant the content is to everything else on the page.

  • 6). The Future of Search Engine Rankings  By : Christian Taylor
    How do you plan for future changes in search engine rankings? It would be great to have a crystal ball, prying into the plans of the search engines and how they may change weights of algorithms and the like. For those of little SE understanding, algorithms are formulas or rules set up by SE's to determine ranking. Each rule then has a different weight or percentage of importance assigned to it.

  • 7). The Three Basic Keys of Search Engine Optimisation  By : David Touri
    With search engine optimisation on the rise, there are many mind blowing theories that are circulating about what will get you high up in the search engines. From having your keywords in bold font, to having your text as close to the top of a page, along with the famous 3% - 7% keyword density rule, we can scrap them all since it comes down to three basic key points.

  • 8). Striking out on your own: Do you really need a sitemap generator?  By : Philip Nicosia
    There are so many responsibilities that are associated with starting a website. Each step towards the realization of a website requires a lot of hard work and utmost dedication to achieve results and to pay attention to detail. Only by doing this can one ensure that a website is set up successfully and able to meet the goals set for its creation. Aside.

  • 9). Good And Bad SEO Practices  By : Andreas Obermueller
    Search Engine Optimizing is a set of practices developed to help you get a high traffic and PageRank, while simultaneously building a useful and functional website that will respond to the needs of your potential users. While some website owners are getting their site indexed by following and enhancing these guidelines, others are looking for a way to sneak in and crawl up search engines by developing various strategies to cheat spiders.

  • 10). The Elusive Practice of Search Engine Optimization  By : Jay Stockman
    Search engine technology has completely revolutionized the way we retrieve relevant information. Mastering the algorithms that drive these marvels of technology is the challenge, and assures the webmaster complete marketing success. In 1990, Alan Emtage at McGill University developed the first search engine, named Archie. Its purpose was to create a database of web filenames that could be queried, and retrieved by any user.



 


© 2006 articles2k.com - Privacy Policy