Industry guru Dave Taylor offers free tech support on a wide variety of technical and business topics, including HTML, Apple iPhone, online advertising, Cascading Style Sheets, Web design, management, Unix, Linux, search engine optimization, online dating, Mac OS X, shell script programming and Microsoft Windows.

How do I map XX.com to www.XX.com in Apache?

I've been keeping an eye on a very interesting discussion about the difference between the Google pagerank of pages on a "www" domain name and the same page without the "www" prefix (e.g. "www.intuitive.com/index.html" versus "intuitive.com/index.html"). Google calculates pagerank based on quite a few different criteria - as detailed in my article How does Google figure out what pages are more relevant? Pagerank. - and if you care about that, and you should, you should be automatically mapping all non-www URLs to their www equivalent.

And here's how to do just that...


Dave's Answer:

In your httpd.conf file, look for an entry like this:

<VirtualHost bestbookbuys.com>
ServerAlias www.bestbookbuys.com
That's the problem in a nutshell: you are defining the "real" name of the Web site to be the domain name without the www prefix. To fix it, change the above entry to something more like:
<VirtualHost www.bestbookbuys.com>
without any ServerAlias entry at all.

Failing that, if you have an entry in your httpd.conf that's more like this:

<VirtualHost www.auctionincome.com>
ServerAlias auctionincome.com
just remove the ServerAlias line.

Either way, you'll also want to, later in the httpd.conf file, add this:

<VirtualHost auctionincome.com>
Redirect permanent /    http://www.auctionincome.com/
</VirtualHost>
This is explained in some detail in the Apache documentation too, if you want more detail.

One cool additional feature: a Redirect of this nature copies everything after the first slash, so a URL like auctionincome.com/abc/def.html will redirect to www.auctionincome.com/abc/def.html, which is exactly what you want.

My thanks to Steve Loyola of Best Book Buys and Chuck Eglinton of Auction Income for their input


Help others find this article at Del.icio.us, Digg, Netscape, Reddit, and Stumble Upon    

Subscribe!

Never miss another useful Q&A article again! Subscribe to AskDaveTaylor with Google Reader.

Comments

mod_rewrite also does a good job, and avoids the extra vhosts. Here's what I use to map www.site -> site (this is for ccsacertification.com, substitute as appropriate)

RewriteEngine on
RewriteCond %{HTTP_HOST} !^ccsacertification\.com [NC]
RewriteCond %{HTTP_HOST} !^$
RewriteRule ^/(.*) http://ccsacertification.com/$1 [L,R]

Sean

Posted by: Sean at November 10, 2004 2:35 PM

Why would I want to use www.site.com instead of just site.com? You implied in your opening that this was somehow Googlebot-friendly, but I can't find anything about that in the post you referenced. Can you clarify or point to some more complete info?

Posted by: Phil at November 10, 2004 4:39 PM

The main idea is that Google indexes *pages* not *sites*, so as far as it's concerned, www.phord.com/page3.html is completely different from phord.com/page3.html. By splitting your links between the two, you don't gain the combined value of all the incoming links on the one page and you end up with a lower search engine ranking that you want.

Make sense?

Posted by: Dave Taylor at November 10, 2004 5:27 PM

What I should say, as a followup, is that it doesn't really matter whether you use the "www." or not, what matters is that you're consistent. If you prefer the non-www version of your domain, just make sure that all inbound links (like comments on Weblogs!) also use that form too.

Posted by: Dave Taylor at November 10, 2004 5:29 PM

Phil, I'll add it's worth doing for more reasons than just Google. I've noticed for some time now that the Daypop Top 40 robot makes a distinction between www and no-www.

http://www.vardaman.org/archive/2003/11/26

See the rankings for adbusters.org in the graphic? Their ranking is fragmented at #16 and #19, where combined properly they should rank a good deal higher.

JD Hodges covers this as well:

http://www.jdhodges.com/log/1373

If you read through the comments you'll notice I got a big difference comparing the reason.com site.

Posted by: Stewart Vardaman at November 23, 2004 3:54 AM

das

Posted by: 3omar at May 17, 2009 3:21 AM

aw

Posted by: ephr at September 15, 2009 4:54 AM

I have a lot to say, but ...
Starbucks coffee cup I have a lot to say, and questions of my own for that matter, but most of all I'd like to say thank you for all your efforts on this Web site by buying you a chai!

I do have a comment, now that you mention it!











Remember personal info?


Please note that I will never send you any unsolicited commercial email. Ever.

While I'm at it, please note that by submitting a question or comment you're agreeing to my terms of service, which are: you relinquish any subsequent rights of ownership to your material by submitting it on this site.









Uniblue: Free Virus Scan

Follow me on Twitter @DaveTaylor

Search
Find just the answers you seek from among our 2300+ free tech support articles by using our Lijit search engine.


Help!





Subscribe to
Ask Dave Taylor!

Add to Google Reader
Add to My Yahoo!
Subscribe in NewsGator Online

RDF   XML

Free Updates!
Sign up and get free weekly updates and special offers on books, seminars, workshops and more.


Recent Entries
Book Links
© 2002 - 2009 by Dave Taylor. All Rights Reserved.

Note: This web site is for the purpose of disseminating information for educational purposes, free of charge, for the benefit of all visitors. We take great care to provide quality information. However, we do not guarantee, and accept no legal liability whatsoever arising from or connected to, the accuracy, reliability, currency or completeness of any material contained on this web site or on any linked site.

[whiteboard marker tray]
"Ask Dave Taylor®" is a registered trademark of Intuitive Systems, LLC.