Skip to content
Snippets Groups Projects
Commit 566bd021 authored by Grand Francois's avatar Grand Francois
Browse files

Merge branch '587-ajouter-une-redirection-vers-https-pour-les-adresses-http' into 'devel'

Resolve "Ajouter une redirection vers https pour les adresses http"

Closes #587

See merge request !201
parents f48601fb a499550b
No related branches found
No related tags found
2 merge requests!225Release v4.17.0,!201Resolve "Ajouter une redirection vers https pour les adresses http"
Pipeline #140180 canceled
<IfModule mod_rewrite.c>
# SSL Redirect
# enable Rewrite capabilities
RewriteEngine On
# check the connection is not already HTTPS
RewriteCond %{HTTPS} off
# rewrite URL with https
RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
</IfModule>
<filesMatch "\.json$">
FileETag None
<ifModule mod_headers.c>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment