Description of the problem:
Your website can be accessed with www.domain.com and domain.com. Since Google penalizes this due to duplicated content reasons, you have to stick your domain to either www.domain.com or domain.com.
But - since some links are outside of your website scope and the search engines already have indexed your website under both addresses, you can't change that easily.
Solution:
Do a 301 redirect for all http requests that are going to the wrong URL.
Example 1 - Redirect domain.com to www.domain.com
RewriteEngine
On
RewriteCond %{HTTP_HOST} !^www.domain.com$ [NC]
RewriteRule ^(.*)$ http://www.domain.com/$1 [L,R=301]Example 2 - Redirect www.domain.com to domain.com
RewriteEngine
On
RewriteCond %{HTTP_HOST} !^domain.com$ [NC]
RewriteRule ^(.*)$ http://domain.com/$1 [L,R=301]Explanation of this .htaccess 301 redirect
Let's have a look at the example 1 - Redirect olddomain.com to www.newdomain.com. The first two lines just say apache to handle the current directory and start the rewrite module. The next line RewriteCond %{HTTP_HOST} !newdomain.com$ specifies that the next rule only fires when the http host (that means the domain of the queried URL) is not (- specified with the "!") newdomain.com. The $ means that the host ends with newdomain.com - and the result is that all pages from newdomain.com will trigger the following rewrite rule. Combined with the inversive "!" is the result every host that is not newdomain.com will be redirected to this domain. The [NC] specifies that the http host is case insensitive. The escapes the "." - becaues this is a special character (normally, the dot (.) means that one character is unspecified). The next - and final - line describes the action that should be executed: RewriteRule ^(.*)$ http://www.newdomain.com/$1
[L,R=301]. The ^(.*)$ is a little magic trick. Can you remember the meaning of the dot? If not - this can be any character (but only one). So .* means that you can have a lot of characters, not only one. This is what we need - because this ^(.*)$ contains the requested URL, without the domain. The next part http://www.newdomain.com/$1 describes the target of the rewrite rule - this is our "final", used domain name, where $1 contains the content of the (.*). The next part is also important, since it does the 301 redirect for us automatically: [L,R=301]. L means this is the last rule in this run - so after this rewrite the webserver will return a result. The R=301 means that the webserver returns a 301 moved permanently to the requesting browser or search engine.
Description of the problem:
You have a website with the name domain.com - and you want to redirect all incomming URL's that are going to domain.com/ to domain.com/index.php
Solution
RewriteEngine On
RewriteCond %{HTTP_HOST} ^domain.com$
RewriteRule ^$ http://domain.com/index.php [L,R=301]Explanation of this .htaccess 301 redirect
What does this code above do? Let's have a look at the example 1 - Redirect olddomain.com to www.newdomain.com. The first two lines just say apache to handle the current directory and start the rewrite module. The next line RewriteCond %{HTTP_HOST} !newdomain.com$ specifies that the next rule only fires when the http host (that means the domain of the queried url) is not (- specified with the "!") newdomain.com. The $ means that the host ends with newdomain.com - and the result is that all pages from newdomain.com will trigger the following rewrite rule. Combined with the inversive "!" is the result every host that is not newdomain.com will be redirected to this domain. The [NC] specifies that the http host is case insensitive. The escapes the "." - becaues this is a special character (normally, the dot (.) means that one character is unspecified). The next - and final - line describes the action that should be executed: RewriteRule ^(.*)$ http://www.newdomain.com/$1
[L,R=301]. The ^(.*)$ is a little magic trick. Can you remember the meaning of the dot? If not - this can be any character(but only one). So .* means that you can have a lot of characters, not only one. This is what we need - because this ^(.*)$ contains the requested url, without the domain. The next part http://www.newdomain.com/$1 describes the target of the rewrite rule - this is our "final", used domain name, where $1 contains the content of the (.*). The next part is also important, since it does the 301 redirect for us automatically: [L,R=301]. L means this is the last rule in this run - so after this rewrite the webserver will return a result. The R=301 means that the webserver returns a 301 moved permanently to the requesting browser or search engine.
Description of the problem:
You have an old website that is accessible under olddomain.com and you have a new website that is accessible under newdomain.com . Copying the content of the old website to the new website is the first step - but what comes after that? You should do a 301 moved permanently redirect from the old domain to the new domain - which is easy and has some advantages:
Solution:
Do a 301 redirect for all http requests that are going to the old domain.
Example 1 - Redirect from olddomain.com to www.newdomain.com
RewriteEngine
On
RewriteCond %{HTTP_HOST} !newdomain.com$ [NC]
RewriteRule ^(.*)$ http://www.newdomain.com/$1 [L,R=301]This is useful when you use www.newdomain.com as your new domain name (see also this article about redirecting www and non-www domains). If not - use the code of example 2.
Example 2 - Redirect from olddomain.com to newdomain.com
RewriteEngine
On
RewriteCond %{HTTP_HOST} !newdomain.com$ [NC]
RewriteRule ^(.*)$ http://newdomain.com/$1 [L,R=301]
Description of the problem:
Some search engines remove the trailing slash from URL's that look like directories - e.g. Yahoo does it. But this could result into duplicated content problems when the same page content is accessible under different URL's. Apache gives some more information in the Apache Server FAQ.
Let's have a look at an example: enarion.net/google/ is indexed in Yahoo as enarion.net/google - which would result in two URL's with the same content.
Solution
The solution was to create a .htaccess rewrite rule that adds the trailing slashes to these URL's. Example - redirect all URL's that doesn't have a trailing slash to URL's with a trailing slash
RewriteEngine
On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_URI} !example.php
RewriteCond %{REQUEST_URI} !(.*)/$
RewriteRule ^(.*)$ http://domain.com/$1/ [L,R=301]Explanation of this add trailing slash .htaccess rewrite rule
The first line tells Apache that this is code for the rewrite engine of the mod_rewrite module of Apache. The 2nd line sets the current directory as page root. But the interesting part is following now: RewriteCond %{REQUEST_FILENAME} !-f makes sure that files that are existing will not get a slash added. You shouldn't do the same with directories since this would exclude the rewrite behavior for existing directories. The line RewriteCond %{REQUEST_URI} !example.php exludes a sample URL that shouldn't be rewritten. This is just an example - if you don't have any file or URL that shouldn't be rewritten, remove this line. The condition RewriteCond %{REQUEST_URI} !(.*)/$ finally fires when a URL doesn't contain a trailing slash - this is all what we want. Now we need to redirect these URL with the trailing slash: RewriteRule ^(.*)$ http://domain.com/$1/ [L,R=301] does the 301 redirect to the URL with the trailing slash appended for us. You should replace domain.com with your URL. Make sure that you stick with the right domain name; if unsure, have a look at this article.
Sales
Support Department
Billing Department(For customers with live account only)
We are in Web Hosting business since 1997 and we know your needs, we do our best for customer satisfaction. Giganetwebhosting.com offers a 'No Questions Asked' Anytime money back guarantee with all unlimited web hosting plans. If you decide to cancel your account at anytime Giganet web hosting will refund you for the remainder of your term, excluding domain registration fees, for which we incur a cost. It's like a warranty that never expires! Your satisfaction is our top priority, and we're confident that you'll be pleased with our services. Best web hosting risk free !
Our servers have special security applications that ensure a secure and reliable hosting environment. Our 24/7 network monitoring ensures that, if an issue does arise, we address it immediately. We provide many additional services and modifications to the default Operating System and control panel installation which greatly enhances the security, reliability, and compatibility of our servers and softwareand offer best web hosting solutions available to our clients. Secure and safe unlimited web hosting, Vps hosting and dedicated servers hosting.

We offer you a price guarantee for any future account renewals. We guarantee that your renewal price will be the same or less for all unlimited web hosting plans. Don't fall for the high discount bargains which are offered by most hosting providers. Read the fine print and note that the initial discounted price is usually 50-90% lower than the standard price at which you will be FORCED to renew! Cheap web hosting and best web hosting combined !
The only place for affordable hosting with top hosting services.