Oops, calcite not beam
diff --git a/.htaccess b/.htaccess
index 6675dcc..48d8c5e 100644
--- a/.htaccess
+++ b/.htaccess
@@ -18,15 +18,15 @@
 # This is a 301 (permanent) redirect from HTTP to HTTPS.
 
 # The next rule applies conditionally:
-# * the host is "beam.apache.org",
+# * the host is "calcite.apache.org",
 # * the host comparison is case insensitive (NC),
 # * HTTPS is not used.
-RewriteCond %{HTTP_HOST} ^beam\.apache\.org [NC]
+RewriteCond %{HTTP_HOST} ^calcite\.apache\.org [NC]
 RewriteCond %{HTTPS} !on
 
 # Rewrite the URL as follows:
-# * Redirect (R) permanently (301) to https://beam.apache.org/,
+# * Redirect (R) permanently (301) to https://calcite.apache.org/,
 # * Stop processing more rules (L).
-RewriteRule ^(.*)$ https://beam.apache.org/$1 [L,R=301]
+RewriteRule ^(.*)$ https://calcite.apache.org/$1 [L,R=301]
 
 # End .htaccess