Money Pro Hosting Quality Cheap Website Hosting and FREE Domain Names

Money Pro Hosting Quality Cheap Website Hosting Service Providers
FREE Set up in Minutes with 99.9% Up-time and a 30 Day Money Back Guarantee


Quality Cheap Website Hosting Service Providers, Money Pro Hosting, offers many web hosting solutions and web hosting plans. Personal web hosting plan, Business website hosting and Corporate website hosting accounts.... FREE Set-up in minutes!

Providing quality cheap web hosting services; cost effective products and services is the obligation of every business. Our affordable website hosting and domain names is just a small part of the services we offer as website hosting providers.


The other part is our focus on fast 24/7 support. Our support reply time... About 15 minutes. That's right - about 15 minutes!
Too good to be true? All we ask is that you give us a try.
Let us prove it to you. You have nothing to lose.
FREE set up in Minutes

Your virtual website hosting package includes
A NO QUESTIONS ASKED 30 DAY 100% ....money back guarantee!
Call us: +1-800-574-0902 (ID 78553)
Font Size: A A A
About
.
Domain prices
Control Panel Demo

HANDLING DUPLICATE CONTENT IN YOUR WEBSITE

[03/08/2010]

When you are building your own website, sooner or later you run into the question - how to handle duplicate content? What do I mean by that? Imagine that you have a highly visited web page, which receives most of the daily visits. You are planning to re-design the website, and give this web page a new URL and a fresh new look, but don’t want to lose all that traffic from that old page. And you can’t keep both of them online, since they will have most likely the same content text-wise - something, which is often penalized by search engines. How do you proceed from there?

The best practice is to do a 301 redirect. The 301 message on the Internet is handled by the search engine as: moved permanently. Here is how you can make a 301 redirect for your web page:

With PHP:

The code needs to be placed in the Header section of the website, so that the search engine can read it first.

Header( “HTTP/1.1 301 Moved Permanently” );
Header( “Location: http://www.new-url.com” );

With .htaccess:

RewriteEngine on
RewriteRule ^old\.php$ http://www.domain.com/new.php [R=permanent,L]

The code above will direct all the traffic from the old.php to the new.php page.

With the rel=”canonical” directive:

If you run an online store and want to sell a custom made handbag, which is available in several colors, and decide to dedicate a separate page on your site for each color, then you have about 3 or 4 identical pages. You can use the rel=”canonical” element to direct all traffic to the page with the most popular color.

This will lead a search engine to point all the traffic from the similar pages to the page you have specified. This code needs to be placed in the header section of all the web pages you wish to lead somewhere else.

With the URL Redirection Manager in the Web Hosting Control Panel:

If you don’t like to meddle with code, or with new file creation, or anything like that, you can use the handy URL Redirection Manager available with all our shared web hosting plans, where a simple web interface will allow you to choose which pages to be redirected and what redirection code to be used.