From 87095a2da156f3d09c748c44477e96d9ec27038f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christian=20Gonz=C3=A1lez?= Date: Fri, 14 Aug 2015 00:22:53 +0200 Subject: [PATCH] add commented out https enforcement --- public/.htaccess | 3 +++ 1 file changed, 3 insertions(+) diff --git a/public/.htaccess b/public/.htaccess index 6ea0e41cedaf..2b6ef6cbe8de 100644 --- a/public/.htaccess +++ b/public/.htaccess @@ -13,4 +13,7 @@ RewriteCond %{REQUEST_FILENAME} !-f RewriteRule ^ index.php [L] + # Enable this to enforce https access +# RewriteCond %{SERVER_PORT} 80 +# RewriteRule ^(.*)$ https://%{HTTP_HOST}/$1 [R,L]