10 lines
309 B
ApacheConf
10 lines
309 B
ApacheConf
RewriteEngine On
|
|
|
|
# handle non https traffic
|
|
RewriteCond %{HTTP:X-Forwarded-Proto} !https
|
|
RewriteCond %{HTTPS} off
|
|
RewriteCond %{HTTP:CF-Visitor} !{"scheme":"https"}
|
|
RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
|
|
|
|
# redirect to /public/ for laravel to take over
|
|
RewriteRule (.*) /public/$1 [L]
|