I have a website that doesn\'t seem to redirect from non-www to www.
My Apache configuration is as follows:
RewriteEngine On ### re-direct t
http://example.com/subdir/?lold=13666 => http://www.example.com/subdir/?lold=13666
http://example.com/subdir/?lold=13666
http://www.example.com/subdir/?lold=13666
RewriteEngine On RewriteCond %{HTTP_HOST} !^www\. [NC] RewriteRule ^(.*)$ http://www.%{HTTP_HOST}%{REQUEST_URI} [R=301,L]