How is a site configured to not require the prepended "www"? Is this a host file setting? Host header configuration?
If I wanted my logs to always show the www.mydomain.com address, what's the easiest way to force the www in the address?
Thanks.
>> Randall
RewriteEngine On
Options +FollowSymlinks
RewriteBase /
RewriteCond %{HTTP_HOST} ^example\.com [NC]
RewriteRule ^(.*)$ [example.com...] [R=permanent]