• timecode

    (@timecode)


    When I look at my site via https:// rather than regular https:// I notice that all resources loaded from the page (css, images, scripts, etc) are missing… because their src url still say’s http. Can this be changed, so that when access is made via https, the theme still works?

Viewing 3 replies - 1 through 3 (of 3 total)
  • rdellconsulting

    (@rdellconsulting)

    Flagged to Developers

    lecyril

    (@lecyril)

    Hi timecode,

    I got it working on my website by using the https:// URL in Settings-General, and installing the “SSL Insecure Content Fixer” plugin (in the plugins settings, I use “Content”). Finally, I redirect all http requests to https with the following lines in the .htaccess:

    #enable SSL
    RewriteCond %{HTTP_HOST} ^pierreetleloup\.info$ [OR]
    RewriteCond %{HTTP_HOST} ^www\.pierreetleloup\.info$
    RewriteCond %{SERVER_PORT} 80
    RewriteRule ^(.*)$ https://www.pierreetleloup.info/$1 [R,L]
    # END enable SSL

    You might want to try this ?? I know it might be an overkill, and maybe some of these steps are redundant, but anyway it works fine now!

    Cyril
    In case you want to check, my website is -https://www.pierreetleloup.info

    Thread Starter timecode

    (@timecode)

    Thank you lecyril

    I used the following:

    • Settings-General-WordPress Address (URL): https://mydomain.com
    • Install plugin “SSL Insecure Content Fixer” (with this plugin’s settings set to “Content”)

    I use CloudFlare and have their “Always use https” function switched ‘on’, so I didn’t modify the .htaccess file.

    Many thanks ??

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Using customizr theme with HTTPS ?’ is closed to new replies.