[Tip] non-www to www redirection with apache

Redirect every request without www subdomain to www subdomain.
The "domain name agnostic way".

RewriteEngine On

RewriteCond %{HTTP_HOST} !^www\.
RewriteRule ^(.*)$ http://www.%{HTTP_HOST}/$1 [R=301,L]