[openssl-commits] [web] master update
Richard Levitte
levitte at openssl.org
Sat Sep 19 05:38:03 UTC 2015
The branch master has been updated
via a75e0423f02a7c5c89874befd98512f867a56c28 (commit)
from 2ed076c6bc565246119f2b4bb53c3c5ca5ebb3df (commit)
- Log -----------------------------------------------------------------
commit a75e0423f02a7c5c89874befd98512f867a56c28
Author: Richard Levitte <levitte at openssl.org>
Date: Sat Sep 19 07:37:46 2015 +0200
Use Redirect rather than RewriteRule, and add one for the FAQ
About rewrite vs redirect, read here:
http://httpd.apache.org/docs/trunk/rewrite/avoid.html
-----------------------------------------------------------------------
Summary of changes:
.htaccess | 7 +++----
1 file changed, 3 insertions(+), 4 deletions(-)
diff --git a/.htaccess b/.htaccess
index 62a857a..cf39f01 100644
--- a/.htaccess
+++ b/.htaccess
@@ -1,11 +1,10 @@
RedirectMatch 404 .*/\.git/.*
-RewriteEngine on
-
Options +ExecCGI +FollowSymLinks
-RewriteRule licenses/openssl_ccla.pdf policies/openssl_ccla.pdf
-RewriteRule licenses/openssl_icla.pdf policies/openssl_icla.pdf
+Redirect permanent /licenses/openssl_ccla.pdf /policies/openssl_ccla.pdf
+Redirect permanent /licenses/openssl_icla.pdf /policies/openssl_icla.pdf
+Redirect permanent /support/faq.html /docs/faq.html
<Files *.md5>
ForceType application/binary
More information about the openssl-commits
mailing list