Merge pull-request #2870

This commit is contained in:
Frederic Guillot 2016-12-05 17:57:40 -05:00
commit c4d3b3d84f
No known key found for this signature in database
GPG Key ID: 92D77191BA7FBC99
1 changed files with 17 additions and 0 deletions

View File

@ -6,4 +6,21 @@
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^ index.php [QSA,L]
############################
## Uncomment the two lines below to enable force HTTPS capabilities
############################
# RewriteCond %{HTTPS} !=on
# RewriteRule ^/?(.*) https://%{SERVER_NAME}/$1 [R,L]
###########################
## Notes:
## The first directive will check to make sure the connection is not already HTTPS
##
## The second directive will redirect users from their original location, to the same location but using HTTPS.
## i.e. http://www.example.com/foo/ to https://www.example.com/foo/
## The leading slash is made optional so that this will work either in httpd.conf
## or .htaccess context
############################
</IfModule>