You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@calcite.apache.org by jh...@apache.org on 2019/10/27 00:43:04 UTC

[calcite-site] branch master updated: Oops, calcite not beam

This is an automated email from the ASF dual-hosted git repository.

jhyde pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/calcite-site.git


The following commit(s) were added to refs/heads/master by this push:
     new b1fd6a3  Oops, calcite not beam
b1fd6a3 is described below

commit b1fd6a37dab8e594db0167117894e37c5ee1bb82
Author: Julian Hyde <jh...@apache.org>
AuthorDate: Sat Oct 26 17:42:50 2019 -0700

    Oops, calcite not beam
---
 .htaccess | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/.htaccess b/.htaccess
index 6675dcc..48d8c5e 100644
--- a/.htaccess
+++ b/.htaccess
@@ -18,15 +18,15 @@ RewriteEngine On
 # 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