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


- Log -----------------------------------------------------------------
commit 2b448f5a972d0f89e4b141d0568984dc1d37d489
Author: Richard Levitte <[email protected]>
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 <[email protected]>
    (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";
_____
openssl-commits mailing list
To unsubscribe: https://mta.openssl.org/mailman/listinfo/openssl-commits

Reply via email to