How can I direct all folders on my website to use HTTPS in .htaccess? – Apache
Please be kind, this is my first question on here :) My Setup Apache served on my Raspberry Pi 4 My .htaccess file # Force HTTPS on all pages <IfModule mod_rewrite.c> RewriteEngine On RewriteCond %{HTTPS} !on RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI} [R=301,L]…