From: Christian González <nerdoc@users.noreply.github.com>
Date: Sat, 30 Jan 2016 22:21:03 +0000 (+0100)
Subject: add simple option for HTTPS in .htaccess
X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=2ca9d011fe2118293a53b0fda068b3ec27d34c4a;p=friendica.git

add simple option for HTTPS in .htaccess

people have it easier to just uncomment 2 lines if they want such an important feature
---

diff --git a/.htaccess b/.htaccess
index 1b63f9ad6f..8c8a8861c4 100644
--- a/.htaccess
+++ b/.htaccess
@@ -30,5 +30,9 @@ Deny from all
   RewriteCond %{REQUEST_FILENAME} !-d
   RewriteRule ^(.*)$ index.php?pagename=$1 [E=REMOTE_USER:%{HTTP:Authorization},L,QSA]
 
+  # If you want to restrict access to your Friendica site to HTTPS only,
+  # uncommment the following lines
+  RewriteCond %{HTTPS} !=on
+  RewriteRule .* https://%{SERVER_NAME}%{REQUEST_URI} [R=301,L]
 </IfModule>