No WWW Using .htaccess
There are some clear benefits to removing the "www" from your URLs:
- Shorter URLs
- Prevention of Google search engine penalties for duplicate content
- Less bandwidth usage if you have many links per page
Luckily, removing the WWW from your page URLs (and subsequent Google listings) can be done inside your .htaccess file so that you wont have to go into every page on your website and remove the "www" from your anchors.
The .htaccess Code
RewriteEngine On
RewriteBase /
RewriteCond %{HTTP_HOST} !^domain.com$ [NC]
RewriteRule ^(.*)$ http://domain.com/$1 [L,R=301]
Conversely, if you'd prefer to use "www" in all of your URLs, you can code:
RewriteEngine On
RewriteBase /
RewriteCond %{HTTP_HOST} !^www.domain.com$ [NC]
RewriteRule ^(.*)$ http://www.domain.com/$1 [L,R=301]
Save some URL characters and remove WWW from your site!
My team mate Edna Piranha is not only an awesome hacker; she's also a fantastic philosopher! Communication and online interactions is a subject that has kept her mind busy for a long time, and it has also resulted in a bunch of interesting experimental projects...
As much as developers now loathe Flash, we're still playing a bit of catch up to natively duplicate the animation capabilities that Adobe's old technology provided us. Of course we have canvas, an awesome technology, one which I highlighted 9 mind-blowing demos. Another technology available...
I released my first MooTools class over a year ago. It was a really minimalistic approach to zebra tables and a great first class to write. I took some time to update and improve the class.
The XHTML
You may have as many tables as...
I'll be honest with you: I still haven't figured out if I like my MooTools teammate Guillermo Rauch. He's got a lot stacked up against him. He's from Argentina so I get IM'ed about 10 times a day about how great Lionel...
Great tip! But what if I have several domains? This only works with one domain.
@Martin:
This can work with multiple domains. Just change the domain name in the code. I use this same htaccess on all of my sites. It is an absolute requirement for my sites.
@David:
Just so you know the standard way to do it is to ADD the www. to domains and take away the www. on subdomains. Just in case you didn’t know the norm.
As far as shorter urls, it really doesn’t matter because most people will just type the domain without the www. but it will be redirected to the www.
Google now has the option in the sitemaps tool to specify which version of the domain you want Google to favor over the other. I recommend setting this first before changing the htaccess if you have a page that is already indexed and ranked.
I usually set it to add the www. I know the double-u, double-u, double-u, dot get’s redundant and really isn’t needed in todays web world, but it’s just a finicky decision on my part. :p
Using RewriteEngine to do this is like using a cannon to shoot a fly. Much “lighter” solution is to make a dummy virtual host and redirect every request using
RedirectMatch
, like:Or, even lighter, you may use simple redirect to main page (no regexps), but it’d be confusing.
@Mark:
Yeah, off course…but I meant if I have several domains to one web site. For example, in Sweden we are strange and have three extra letters (å, ä and ö) and if I have a name with any of these in I have to get one address with the swedish letter and one with a or o instead.
I know that I’m supposed to change the address in the example to my domain address.
Took your advice but for some reason it doesn’t seem to be working – this is the code I use on the last line, but it stays with http://www.:
RewriteRule ^(.*)$ http://mollermarketing.com/$1 [L,R=301]
thanks for the help.
Very useful tip. Thanks!
@Leafnode stop exaggerate.
RewriteEngine
is the best way to do it.Heres an interesting one, I am in the process of moving a site from one host to another. My new server has apache userdir turned on so my site is visible on
exampleserver.com/~mysite
and
mysite.com
I have had a problem before with this sort of setup where google discovered both ways into the site and penalised me for duplicate content.
Unfortunately I cannot turn Userdir off.
Is there a way of preventing this sort of leak with htaccess?
Thanks for any help :D
You can also use this:
RewriteCond %{HTTP_HOST} ^www.(.+)$ [NC]
RewriteRule ^(.*)$ http://%1/$1 [R=301,L]
So does it matter if google site: only indexes the domain without www? Example, I have channelkelley.com. All the pages are listed without the www, but none are listed when you use http://www.channelkelley.com. I guess that’s fine if google penalizes for duped content. I just want to ensure I’m getting the most mileage from the engines. :)
Thank you so much David.
Very useful to hide Joomla administrator App.
I’ve combined and put your tips here.
http://forum.joomla.org/viewtopic.php?f=432&t=418458
Hi,
What then is the code if I have only one site on my server http://www.villa-stbarths.com but I want any-one typing just villa-stbarths.com to arrive on the index page at http://www.villa-stbarths.com/index.htm ?
Thanks, Henry
Hey, I don’t think you need the “RewriteBase /” lin in there. It works fine for me without that line.
Do not work for me :/ I’m tired of trying to dissappear www from my domain address.
However I have mod_rewrite enabled (I can still make my joomla have Use Apache mod_rewrite enabled)
Thanks David – this is the shortest and most concise explanation for running a site without WWW. It’s working like a charm on one of our new sites!
I try it but it’s not work. When I try into www. but it don’t redirect to non-www
How do handle https pages as well?
How do you handle https pages as well?
Thanks a lot , really usefull , and resolve the ^(.+)\/$ config
Really thanks
Although it might be sexy, do not use this when you want cookieless subdomains like a CDN (content delivery network) or to avoid cookies on other content of your page. Every subdomain and all content of your domain receives these cookies when landing on yourdomain.com, stylesheets, images, everything. This can be a performance gain like ,for example, this document is explaining – http://www.ravelrumba.com/blog/static-cookieless-domain/
The landing page must http://www.yourdomain.com to avoid cookies on, for example, img.yourdomain.com.
Google has also documentation about this, it is a part of Google Speedtest. That’s a very technical story but very interesting to read to avoid unnecessary overhead on your website. I followed this Speed Guide and have implement it at a couple of websites and results are amazing. Caching is also a good thing, safes more bandwidth, server doesn’t need the power before, sites are speedier even on shared hosting and especially on handheld devices.
The issue I find with this is it does not well-support cases where there are multiple domains.
I find this to be a more global and portable way of doing this (when such is needed):
As you can see, this should work no matter the domain.
i want to use non-www. and i used code below. but is not working.and i use joomla 3.
And I have your same RewriteRule with the
R=301
first thenL
Are there any difference between
and