apache redirect from non www to www
- by user121196
I have a mortgage calculator site that doesn't seem to redirect from mookal.com to www.mookal.com
My apache config is as follows:
RewriteEngine On
### re-direct to www
RewriteCond %{http_host} !^www.mookal.com [nc]
RewriteRule ^(.*)$ http://www.mookal.com/$1 [r=301,nc]
what am I missing?
thanks!