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 the landingpage this works fine, but all posts are still accessible through HTTP without getting redirected. Any ideas why this could be happening?