[openssl-commits] [web] master update
Rich Salz
rsalz at openssl.org
Mon Oct 23 22:21:17 UTC 2017
The branch master has been updated
via a57b926c86590b6e4aca016e39ce4776a63f8bcd (commit)
from 156c3ff634ccade97cc703bd7c03ac6ced3c2360 (commit)
- Log -----------------------------------------------------------------
commit a57b926c86590b6e4aca016e39ce4776a63f8bcd
Author: Rich Salz <rsalz at akamai.com>
Date: Mon Oct 23 15:51:31 2017 -0400
Add some rewrite rules
Recommended by a usability study conducted by Martin Ukrop at CRoCS, FI MU
Reviewed-by: Richard Levitte <levitte at openssl.org>
(Merged from https://github.com/openssl/web/pull/26)
-----------------------------------------------------------------------
Summary of changes:
docs/.htaccess | 15 ++++++++++++---
1 file changed, 12 insertions(+), 3 deletions(-)
diff --git a/docs/.htaccess b/docs/.htaccess
index afd678d..fdbe2e6 100644
--- a/docs/.htaccess
+++ b/docs/.htaccess
@@ -3,11 +3,20 @@ RewriteRule ^fips/fipsnotes.html /docs/fipsnotes.html [L,R=302,NC]
RewriteRule ^fips/fipsvalidation.html /docs/fipsvalidation.html [L,R=302,NC]
RewriteRule ^fips/index.html /docs/fips/fips.html [L,R=302,NC]
RewriteRule ^misc/OCB-patent-grant-OpenSSL.pdf /source/OCB-patent-grant-OpenSSL.pdf [L,R=302,NC]
+RewriteRule ^manmaster/apps/config.html /docs/manmaster/man5/config.html [L,R=302,NC]
+RewriteRule ^manmaster/apps/x509v3_config.html /docs/manmaster/man5/x509v3_config.html [L,R=302,NC]
+RewriteRule ^manmaster/crypto/bio.html /docs/manmaster/man7/bio.html [L,R=302,NC]
+RewriteRule ^manmaster/crypto/crypto.html /docs/manmaster/man7/crypto.html [L,R=302,NC]
+RewriteRule ^manmaster/crypto/x509.html /docs/manmaster/man7/x509.html {l,R=302,NC]
+RewriteRule ^manmaster/crypto/ct.html /docs/manmaster/man7/ct.html [L,R=302,NC]
+RewriteRule ^manmaster/crypto/des_modes.html /docs/manmaster/man7/des_modes.html [L,R=302,NC]
+RewriteRule ^manmaster/crypto/evp.html /docs/manmaster/man7/evp.html [L,R=302,NC]
+RewriteRule ^manmaster/ssl/ssl.html /docs/manmaster/man7/ssl.html [L,R=302,NC]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^manmaster/apps/1/(.*) /docs/manmaster/apps/$1 [L,R=302,NC]
RewriteCond %{REQUEST_FILENAME} !-f
-RewriteRule ^apps/(..*) /docs/manmaster/apps/$1 [L,R=302,NC]
+RewriteRule ^apps/(..*) /docs/manmaster/man1/$1 [L,R=302,NC]
RewriteCond %{REQUEST_FILENAME} !-f
-RewriteRule ^crypto/(..*) /docs/manmaster/crypto/$1 [L,R=302,NC]
+RewriteRule ^crypto/(..*) /docs/manmaster/man3/$1 [L,R=302,NC]
RewriteCond %{REQUEST_FILENAME} !-f
-RewriteRule ^ssl/(..*) /docs/manmaster/ssl/$1 [L,R=302,NC]
+RewriteRule ^ssl/(..*) /docs/manmaster/man3/$1 [L,R=302,NC]
More information about the openssl-commits
mailing list