6 lines
227 B
ApacheConf
6 lines
227 B
ApacheConf
ErrorDocument 404 /404.html
|
|
RewriteEngine On
|
|
RewriteCond %{HTTP:X-Forwarded-Proto} !https
|
|
RewriteCond %{HTTPS} off
|
|
RewriteCond %{HTTP:CF-Visitor} !{"scheme":"https"}
|
|
RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301] |