WordPress not redirecting to HTTPS – Apache
I'm currently working on a new Wordpress Site and (ofc) want to redirect all HTTP traffic to HTTPS. They way I tried it is by defining this in my .htaccess RewriteEngine On RewriteCond %{HTTPS} off RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301] For…