[openssl-commits] [web] master update

Richard Levitte levitte at openssl.org
Wed Sep 19 09:18:47 UTC 2018


The branch master has been updated
       via  2b448f5a972d0f89e4b141d0568984dc1d37d489 (commit)
      from  8a1b9339b244cf9bf76bb1bed0eb6e6cd45b3871 (commit)


- Log -----------------------------------------------------------------
commit 2b448f5a972d0f89e4b141d0568984dc1d37d489
Author: Richard Levitte <levitte at openssl.org>
Date:   Wed Sep 19 02:47:10 2018 +0200

    Fix openssl.com htaccess
    
    Redirect works with prefixes.  If only / should be redirected and not
    any sub-path, use RedirectMatch
    
    Reviewed-by: Tim Hudson <tjh at openssl.org>
    (Merged from https://github.com/openssl/openssl/pull/81)

-----------------------------------------------------------------------

Summary of changes:
 .htaccess.openssl.com | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/.htaccess.openssl.com b/.htaccess.openssl.com
index 90b3e57..2af9a82 100644
--- a/.htaccess.openssl.com
+++ b/.htaccess.openssl.com
@@ -1,4 +1,5 @@
 # -*- Apache -*-
-Redirect permanent / https://www.openssl.org/community/contacts.html
 Redirect permanent /verifycd.html https://www.openssl.org/docs/fips/verifycd.html
+
+RedirectMatch permanent "^/$" https://www.openssl.org/community/contacts.html
 RedirectMatch permanent "^(.*)$" "https://www.openssl.org$1"


More information about the openssl-commits mailing list