I have wordpress site that should now be totally served over https. I get mixed content warnings on most of the pages as quite a lot of the content still have http addresses in the db, but are all available via https.
I have the following in my .htaccess
file:
# Redirect HTTP to HTTPS
RewriteCond %{HTTPS} !=on
RewriteRule (.*) https://%{SERVER_NAME}/$1 [R,L]
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress
I have limited Apache experience, so my question is why doesn't the above redirect ALL requests to https, even the embedded content?