-
Notifications
You must be signed in to change notification settings - Fork 222
页面静态资源以及HTTPS支持说明
Anan Yang edited this page Apr 12, 2016
·
2 revisions
若开启https
后
出现资源加载失败或者任何异常
请右键查看当前页面源代码,如果 head
内的 base
标签还是以 http://
开头
<base href="http://">
请到 ./Data/Config.php
配置文件中将以下内容修改为
// define('BASE_URL', 'http://www.kookxiang.com');
Core\Request::autoDetectBaseURL();
这样:
define('BASE_URL', 'https://your-domain.com');
// Core\Request::autoDetectBaseURL();
并且,将 HTTPS_SUPPORT
修改为 true
define('HTTPS_SUPPORT', true);
即可解决 开启https
后依然为 http
的 base 标签问题(更多出现的情况是在使用http,被 CF 等CDN挂靠之后转变为HTTPS而本地服务器还是HTTP模式运行,系统自动取BASE地址为本地的HTTP模式 所导致的问题。)