Mixed Content Page: requested an insecure stylesheet error

Here’s your problem:

RewriteCond %{SERVER_PORT} ^443$
RewriteRule (.*) http://www.example.com/$1 

You don’t allow SSL requests (443 port number is used for HTTPS requests). Try removing these lines.

Leave a Comment