I applied the following mod_rewrite rule in Apache2 to redirect from non www to www:
mod_rewrite
Apache2
RewriteEngine On RewriteCond %{HTTP_HOST} ^exa
Fixed with:
RewriteEngine On RewriteCond %{HTTP_HOST} ^mydomain\.com$ [NC] RewriteRule ^(.*)$ http://www.mydomain.com$1 [R=301,L]
because $1 by default contains the index path /
$1
/