Apache Virtual Host Config www vs non-www, Rewrite or sServerAlias?

Solution 1:

I would probably do both. With something like:

<VirtualHost 111.22.33.44:80>
  ServerName subdomain.site.com

  #Using Wildcard: might as well handle any variation
  #such as ww.subdomain.site.com (remember to set this in DNS too)
  ServerAlias *.subdomain.site.com

  RewriteEngine On

  #Change all variations to the Canonical hostname for SEO.
  RewriteCond %{HTTP_HOST} !^subdomain.site.com [NC]
  RewriteRule ^/(.*)$ http://subdomain.site.com/$1 [R=301]
  Include conf/subdomain.conf 
</VirtualHost>

Note: the solution by David Zaslavsky above does more or less the same thing, but this way you don't have to do a separate VirtualHost section for each subdomain.

Solution 2:

I'd imagine the rewriting solution gets better SEO-foo (nice term :-P) since it's usually considered best to have one canonical domain that everybody gets sent to for a particular set of content. In other words, having two different domains that produce the same results from the server can split your site rankings between the two domains, reducing the value of each. (Google allows you to specify a canonical domain using its Webmaster Tools, but that only works on Google)

I think you can actually use a Redirect here, i.e.

<VirtualHost *:80>
    ServerName www.subdomain.site.com
    Redirect permanent / http://subdomain.site.com/
</VirtualHost

That is less computationally intensive than invoking mod_rewrite.

Solution 3:

Here's what works for me:

<VirtualHost *:80>

ServerName www.domain.com
ServerAlias domain.com

# [ snip some unrelated stuff ]

# Redirect secondary hostnames to canonical hostname
RewriteEngine On
RewriteCond %{HTTP_HOST} ^domain.com$
RewriteRule (.*) http://www.domain.com$1 [R=301,L]

</VirtualHost>

The advantage of doing this instead of RedirectMatch is that it will redirect domain.com/about-us to www.domain.com/about-us instead of just redirecting every request to the home page. It also uses a 301 redirect, which transfers search engine ranking from domain.com/about-us to www.domain.com/about-us.