12 lines
365 B
ApacheConf
12 lines
365 B
ApacheConf
|
RewriteEngine on
|
||
|
|
||
|
# Redirection du www vers non-www en HTTPS
|
||
|
RewriteCond %{HTTP_HOST} ^www\.(.+) [NC]
|
||
|
RewriteRule ^ https://%1%{REQUEST_URI} [L,R=301]
|
||
|
|
||
|
# Redirection vers HTTPS
|
||
|
RewriteCond %{HTTPS} off
|
||
|
RewriteCond %{HTTP:X-Forwarded-Proto} !https
|
||
|
RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
|
||
|
|
||
|
# See https://ouvaton.coop/certificat-ssl/
|