Index: .htaccess
===================================================================
RCS file: /cvs/drupal/drupal/.htaccess,v
retrieving revision 1.81
diff -u -r1.81 .htaccess
--- .htaccess	9 Jan 2007 09:27:10 -0000	1.81
+++ .htaccess	19 Jan 2007 23:16:49 -0000
@@ -58,17 +58,19 @@
   RewriteEngine on
 
   # If your site can be accessed both with and without the prefix www. you
-  # can use one of the following settings to force user to use only one option:
+  # can use one of the following settings to force user to use only one option.
+  # If the user types in the wrong option, they will be redirected to the
+  # correct one:
   #
-  # If you want the site to be accessed WITH the www. only, adapt and
-  # uncomment the following:
+  # If you want the site to appear always WITH the www. prefix,
+  # whether the user types it or not, adapt and uncomment the following:
   # RewriteCond %{HTTP_HOST} ^example\.com$ [NC]
-  # RewriteRule .* http://www.example.com/ [L,R=301]
+  # RewriteRule ^(.*)$ http://www.example.com/$1 [R=301,L]
   #
-  # If you want the site to be accessed only WITHOUT the www. prefix, adapt
-  # and uncomment the following:
+  # If you want the site to appear always WITHOUT the www. prefix,
+  # whether the user types it or not, adapt and uncomment the following:
   # RewriteCond %{HTTP_HOST} ^www\.example\.com$ [NC]
-  # RewriteRule .* http://example.com/ [L,R=301]
+  # RewriteRule ^(.*)$ http://example.com/$1 [R=301,L]
 
   # Modify the RewriteBase if you are using Drupal in a subdirectory and
   # the rewrite rules are not working properly.
@@ -92,4 +94,4 @@
   RewriteRule ^(.*)$ index.php?q=$1 [L,QSA]
 </IfModule>
 
-# $Id: .htaccess,v 1.81 2007/01/09 09:27:10 dries Exp $
+# $Id: .htaccess,v 1.81 2007/01/09 09:27:10 dries Exp $
\ No newline at end of file
