Wordpress get_template_directory_uri() returns http instead of https

前端 未结 7 1358
暖寄归人
暖寄归人 2021-02-19 03:32

We have recently applied SSL certificate on our website and we want all our url to have https:// protocol.

Once we moved our website to https://, our website broke down

相关标签:
7条回答
  • 2021-02-19 03:38

    Check the $_SERVER['HTTPS'] value. This should be set to on or 1. If it has any other value while being set, this function will output http rather than https.

    See: https://core.trac.wordpress.org/browser/tags/4.5.3/src/wp-includes/functions.php#L4025

    0 讨论(0)
  • 2021-02-19 03:43

    Going by this comment the initiator added:

    in my case we were using Load Balancer server and the SSL certificate was install on load balancer

    The answer from @pbond scratches the surface to the root cause of the issue. The WordPress is_ssl() function checks the $_SERVER['HTTPS'] and $_SERVER['SERVER_PORT'] to check if the current page is being accessed via https but the load balancer is most likely requesting your content on the non-SSL port 80.

    One good fix for this is to use the X-Forwareded-Proto HTTP header to figure out which protocol the client is actually using on the other side of the Load Balancer.

    With Apache 2.2, you could add this to your configuration:

    <IfModule mod_setenvif.c>
      SetEnvIf X-Forwarded-Proto "^https$" HTTPS
    </IfModule>
    

    Another possible fix (alluded to by @Roberto Poblete but not explained) is to add this to wp-config.php

    if (isset($_SERVER['HTTP_X_FORWARDED_PROTO']) && $_SERVER['HTTP_X_FORWARDED_PROTO'] == 'https')
    $_SERVER['HTTPS'] = 'on';
    

    I have this to thank for sending me in the right direct

    0 讨论(0)
  • 2021-02-19 03:44

    Check the list of plugins installed. Any plugin involving caching, CDNs etc may interfere with get_template_directory_uri. In our case the customer had installed a ton of plugins to supposedly speed up his site.

    With no plugins enabled https loaded fine. So it was just a case of figuring out which one it was. And buried in the offending plugin's settings there was an http version of the site path.

    0 讨论(0)
  • 2021-02-19 03:53

    Please use the following:

    get_stylesheet_directory_uri();
    

    it will be a web-address (starting with http:// or https:// for SSL). As such, it is most appropriately used for links, referencing additional stylesheets, or probably most commonly, images.

    https://codex.wordpress.org/Function_Reference/get_stylesheet_directory_uri

    0 讨论(0)
  • 2021-02-19 03:54

    view notes of link https://codex.wordpress.org/Function_Reference/is_ssl

    if (isset($_SERVER['HTTP_X_FORWARDED_PROTO']) && $_SERVER['HTTP_X_FORWARDED_PROTO'] == 'https')
    $_SERVER['HTTPS'] = 'on';
    
    0 讨论(0)
  • 2021-02-19 03:54

    This worked for me like a charm, added to wp-config at the end:

    define('FORCE_SSL_ADMIN', true);
    define('WP_HOME', 'https://' . $_SERVER['HTTP_HOST']);
    define('WP_SITEURL', WP_HOME);
    
    0 讨论(0)
提交回复
热议问题