This is old, but the issue is still around! I'm facing the same issue, over ssl. Also on one project the icons is not showing up neither on http or https.
Any clues to solve this?
SOLUTION FOUND!
Here's the solution that worked for both my projects:
Add the following code to the .htaccess file
RewriteEngine On
RewriteCond %{SERVER_PORT} 80
RewriteRule ^(.*)$ https://quen-quen.com/$1 [R=301,L]
Change the URL on the RewriteRule to your domain!
This code will force the use of https connections, eliminating the issue.
This is old, but the issue is still around! I'm facing the same issue, over ssl. Also on one project the icons is not showing up neither on http or https.
Any clues to solve this?
SOLUTION FOUND!
==================
Here's the solution that worked for both my projects:
Add the following code to the **.htaccess** file
````
# Always use https for secure connections
# Replace 'www.example.com' with your domain name
# (as it appears on your SSL certificate)
RewriteEngine On
RewriteCond %{SERVER_PORT} 80
RewriteRule ^(.*)$ https://quen-quen.com/$1 [R=301,L]
````
_Change the URL on the RewriteRule to your domain!_
This code will force the use of https connections, eliminating the issue.
BlackBerry enthusiast, entrepreneur, web developer, geek with glasses and enlightened agent!
edited Sep 17 '19 at 2:59 pm