I\'m using the following .htaccess file to force any page request to https://
RewriteEngine On RewriteCond %{HTTPS} !=on RewriteRule ^ https://%{HTTP_HOST}%{
This should get what you need.
RewriteEngine On RewriteCond %{HTTPS} off RewriteCond %{REQUEST_URI} !domain [NC] RewriteRule ^ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]