apache redirect from non www to www

Posted by user121196 on Stack Overflow See other posts from Stack Overflow or by user121196
Published on 2009-07-08T20:22:23Z Indexed on 2010/06/15 23:42 UTC
Read the original article Hit count: 174

Filed under:
|

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!

© Stack Overflow or respective owner

Related posts about apache

Related posts about redirect