Apache Redirect URL 带和不带 WWW

Apache Redirect URL with and without WWW

如何重写带有和不带 www. 的 URL?我的 .htaccess 中的以下代码会将 domain1.com 重写为 domain2.com 而不是 www.domain1.com.

RewriteEngine on
RewriteCond %{HTTP_HOST} ^domain1.com
RewriteRule ^(.*)$ http://domain2.com/ [R=permanent,L]
RewriteEngine on
RewriteCond %{HTTP_HOST} ^(www\.)?domain1.com$
RewriteRule ^(.*)$ http://domain2.com/ [R=permanent,L]