htttp link to https
-
I would like to change the following link from:
http://fonts.googleapis.com/css?family=Roboto+Condensed:400,300
to
https://fonts.googleapis.com/css?family=Roboto+Condensed:400,300I use the following plugins to change my http to https
1) Fix SSL/Non-SSL Links
2) Really Simple SSLI have added the following to my .htaccess file
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{SERVER_PORT} 80
RewriteRule ^(.*)$ https://www.yoursite.com/$1 [R,L]
</IfModule>However the above link still slipped through and is accessing through http which causes a mixed content warning. I will be very grateful if someone can point me in the right direction.
Kind regards
Roni Daya
The topic ‘htttp link to https’ is closed to new replies.