报错信息
Mixed Content: The page at 'https://www.kindundjugend.cn/' was loaded over HTTPS, but requested an insecure image 'http://www.kindundjugend.cn/api/thumb/fbd7939d674997cdb4692d34de8633c4/--0-0.jpg'. This request has been blocked; the content must be served over HTTPS.
加https 是可以访问的,
https://www.kindundjugend.cn/statics/kj/css/stylesheet-23.css
如果不加就访问不了,
http://www.kindundjugend.cn/statics/kj/css/stylesheet-23.css
所有引用的css 和js 肯定都是放到header.html 里面,然后使用 {THEME_PATH} 来写域名路径,比如: <link rel="stylesheet" href="{THEME_PATH}kj/css/stylesheet-23.css"> 但是{THEME_PATH} 加载出来的不是https 而是http ,怎么让{THEME_PATH} 加载出来https 呢? 讯睿cms 是在index.php 里面写 // 是否https 访问 define('IS_HTTPS_FIX', 1); poscms 里面写什么呢