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
This is similar to many of the other suggestions with a couple enhancements:
%{REQUEST_URI}
rules.The path portion not affected by previous RewriteRule
s like %{REQUEST_URI}
is.
RewriteCond %{HTTP_HOST} !^www\. [NC]
RewriteRule ^(.*)$ %{REQUEST_SCHEME}://www.%{HTTP_HOST}/$1 [R=301,L]