This site utilizes JavaScript to function correctly. Looks like it's disabled on your browser. Please enable it for your best experience.

For instructions on enabling JavaScript, click here

Skip to main content

Just Host Web Hosting Help

How To Redirect Rewrite Using The htaccess File - www to non-www

URL redirect rewrite using the .htaccess file

Summary

By default your website can be accessed with both www.example.com and example.com. Since Google penalizes this due to duplicated content reasons, you should restrict the access to either www.example.com or example.com. Some links may be outside of your website scope and/or the search engines may have already indexed your website under both addresses.

Your primary .htaccess file is located in your public_html folder. To see how to access this file please see our .htaccess Tutorial.

Redirecting to or from WWW

Part 1 - How do I redirect all links for www.example.com to example.com ?

Create a 301 redirect forcing all http requests to use either www.example.com or example.com:

  • Example 1 - Redirect example.com to www.example.com:
    RewriteEngine On
                RewriteCond %{HTTP_HOST} !^www.example.com$ [NC]
                RewriteRule ^(.*)$ http://www.example.com/$1 [L,R=301]
  • Example 2 - Redirect www.example.com to example.com:
    RewriteEngine on
                RewriteCond %{HTTP_HOST} ^www\.example\.com$
                RewriteRule ^/?$ "http\:\/\/example\.com\/" [R=301,L]

Explanation of this .htaccess 301 redirect:

Let's have a look at the example 1 - Redirect example.com to www.example.com. The first line tells apache to start the rewrite module. The next line:

RewriteCond %{HTTP_HOST} !^www.example.com$ [NC]
specifies that the next rule only fires when the http host (that means the domain of the queried url) is not (- specified with the "!") www.example.com.

The $ means that the host ends with www.example.com - and the result is that all pages from www.example.com will trigger the following rewrite rule. Combined with the inversive "!" is the result every host that is not www.example.com will be redirected to this domain.

The [NC] specifies that the http host is case insensitive. The escapes the "." - because this is a special character (normally, the dot (.) means that one character is unspecified).

The final line describes the action that should be executed:

RewriteRule ^(.*)$ http://www.example.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 ^(.*)$ contains the requested url, without the domain.

The next part http://www.example.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. 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.

Redirect to example.com/index.php

You have a website with the name example.com and you want to redirect all incoming urls that are going to example.com/ to example.com/index.php

RewriteEngine On
            RewriteCond %{HTTP_HOST} ^example.com$
            RewriteRule ^$ http://example.com/index.php [L,R=301]
Explanation of this .htaccess 301 redirect:

What does this code above do? Let's have a look at Example 1 - Redirect example.com to www.example.com. The first line starts the rewrite module. The next line:

RewriteCond %{HTTP_HOST} !www.example.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 "!") www.example.com.

The $ means that the host ends with www.example.com - and the result is that all pages from example.com will trigger the following rewrite rule. Combined with the inversive "!" is the result every host that is not www.example.com will be redirected to this domain.

The [NC] specifies that the http host is case insensitive. The escapes the "." - because this is a special character (normally, the dot (.) means that one character is unspecified).

The final line describes the action that should be executed:

RewriteRule ^(.*)$ http://www.example.com/$1 [L,R=301].
The ^(.*)$ is a little magic trick. Remember the meaning of the dot? If not, this can be any character(but only one). The .* means that you can have a lot of characters, not only one. This is what was intended. ^(.*)$ contains the requested url, without the domain.

The next part http://www.example.com/$1 [L,R=301] describes the target of the rewrite rule -this is the "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. 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.

Redirect visitors to a new site

You have an old website that is accessible under oldexample.com and you have a new website that is accessible under newexample.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:

  • Users will automatically be redirected to the new domain - you do not have to inform them.
  • Search engines will be redirected to the new domain and all related information will be moved to the new domain (but this might take some time).
  • Google's PageRank â„¢ will be transfered to the new domain, as well as other internal information that is being used to set the position of pages in the search engine result pages (serp's) - like TrustRank .

Create a 301 redirect for all http requests that are going to the old domain.

  • Example 1 - Redirect from oldexample.com to www.newexample.com:
  • RewriteEngine On
                RewriteCond %{HTTP_HOST} !oldexample.com$ [NC]
                RewriteRule ^(.*)$ http://www.newexample.com/$1 [L,R=301]
    This is useful when you use www.newexample.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 oldexample.com to newexample.com:
    RewriteEngine On
                RewriteBase /
                RewriteCond %{HTTP_HOST} !oldexample.com$ [NC]
                RewriteRule ^(.*)$ http://newexample.com/$1 [L,R=301]

How to add a trailing slash

Some search engines remove the trailing slash from urls that look like directories - e.g. Yahoo does it. However it could result into duplicated content problems when the same page content is accessible under different urls. Apache gives some more information in the Apache Server FAQ.

Let's have a look at an example: example.com/google/ is indexed in Yahoo as example.com/google - which would result in two urls with the same content.

The solution is to create a .htaccess rewrite rule that adds the trailing slashes to these urls. Example - redirect all urls that do not have a trailing slash to urls with a trailing slash:

RewriteEngine On
            RewriteCond %{REQUEST_FILENAME} !-f
            RewriteCond %{REQUEST_URI} !example.php
            RewriteCond %{REQUEST_URI} !(.*)/$
            RewriteRule ^(.*)$ http://example.com/$1/ [L,R=301]
Explanation of the 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:

RewriteCond %{REQUEST_FILENAME} !-f
makes sure that existing files 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
excludes a sample url that should not be rewritten. This is just an example. If you do not have a file or url that should not be rewritten, remove this line. The condition:
RewriteCond %{REQUEST_URI} !(.*)/$
finally fires when a url does not contain a trailing slash. Now we need to redirect the urls without the trailing slash:
RewriteRule ^(.*)$ http://example.com/$1/ [L,R=301]
does the 301 redirect to the url, with the trailing slash appended. You should replace example.com with your domain.
Knowledgebase Article 1,917,034 views bookmark tags: htaccess redirect rewrite url


Was this resource helpful?

Did this resolve your issue?


Please add any other comments or suggestions about this content:





Recommended Help Content

How do I create a redirect?
Knowledgebase Article 645,326 views tags: htaccess redirect redirects

Preventing bandwidth theft using the mod rewrite engine and .htaccess
Knowledgebase Article 200,298 views tags: htaccess rewrite

Explains how to edit the .htaccess
Knowledgebase Article 348,332 views tags: htaccess

Related Help Content

The redirection of www.yourdomain.com/default.html or index.html to http://www.yourdomain.com/index.php?act=whatever redirects it to http://www.yourdomain.com/index.php%3fact=whatever In other words,
Knowledgebase Article 1,024,444 views tags: htaccess messing mod php redirect redirects rewrite variable variables

How do I redirect users to another page using PHP?
Knowledgebase Article 916,140 views tags: header location php redirect redirects

What is the .htaccess file and where can I find more information?
Knowledgebase Article 2,073,984 views tags: htaccess tips tricks

How to force https on entire website.
Knowledgebase Article 371,450 views tags: htaccess ssl website

This article will explain how to change the Site URL or Home URL setting in WordPress. This may be useful if you have moved your WordPress site or are planning to move your WordPress site.
Knowledgebase Article 263,207 views tags: home site url wordpress wordpresstools

Redirects allow you to make a specific web page redirect to another page and display the contents of that page. Learn how to setup a Permanent (301 or Termporary (302) redirects.
Video "How-to" Tutorial 583,898 views tags: cpanel cpanelutilities domain forward redirect

How to run CGI scripts for Addon domains.
Knowledgebase Article 222,291 views tags: cgi htaccess

How do I make a sub directory (or sub folder) act as the public_html for your main domain?
Knowledgebase Article 1,082,333 views tags: Drupal domain htaccess joomla wordpress

** Google ad credits are only available to customers in the United States, Canada, and the United Kingdom at this time.

¹ VAT (Value Added Tax) is not included in our advertised price and will be charged separately and itemized on invoices and billing information. Standard VAT rates based on EU Member State regulations may apply. Learn more.