From 7ead48e667430fa383722aa8d0f9dc0d457b4361 Mon Sep 17 00:00:00 2001 From: Emil Miler Date: Sun, 2 Apr 2023 10:46:46 +0200 Subject: [PATCH] Enable HTTPS redirect with Apache --- .htaccess | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 .htaccess diff --git a/.htaccess b/.htaccess new file mode 100644 index 0000000..1fd7cb0 --- /dev/null +++ b/.htaccess @@ -0,0 +1,3 @@ +RewriteEngine on +RewriteCond %{HTTPS} !=on +RewriteRule ^(.*)$ https://%{SERVER_NAME}/$1 [L]