5 lines
129 B
ApacheConf
5 lines
129 B
ApacheConf
# adding https redirection :
|
|
RewriteEngine On
|
|
RewriteCond %{HTTPS} off
|
|
RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI} [R,L]
|