hosting 24/7 support, Web Directory, Clarib Web Directory, Skoobe Link Directory, Artoo Links - SEO Friendly Directory Droid

XSHost.NET is a cheap, newbie friendly web hosting. The beginner web masters will find a lot of features that will allow them to start building pages almost instantly.

We provide an on-line web building software with numerous templates that can be used right away. You will be able to start your web page without any HTML knowledge. Creating your pages requires only to follow the steps in a user friendly wizard.

Also, among the features you will find a powerful script installer that will allow you to configure 34+ scripts automatically. Among the selection of scripts you will find BLOGs, CALENDARS, CHAT SCRIPTS, CLASSIFIED ADS, CONTENT MANAGEMENT (CMS), DISCUSSION BOARDS (also known as forums or bbs), etc. The popular titles include phpBB, Joomla, Moodle, Drupal, phpList, Wordpress and more.

The seasoned web masters won't miss any of the imperative Linux hosting features. We support PHP 4, PHP 5, Perl 5.8.x, MySQL, even SSH access at our Enterprise plan. Of course you will have plenty of disk space and traffic to meet even the needs of a busy site.

Probably the most important feature is the 24/7 web hosting support. Our support officers are available around the clock, seven days a week. Ticket are usually answered within a few minutes. If you need to reach an officer immediately, there is also phone and chat support available.

Do not hesitate to take a risk free test drive of our hosting service. We offer a 30 day money back guarantee.

If you have more questions, please feel free to check the rest of our our web site, chat with our support representatives or even call them.

Thank you.
Live Chat Offline
Call us: +1-800-574-0902 (ID 46172)
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.