我的项目有问题。它没有错误,但当我试图在一些免费的托管网站上传它时,CSS不会触发。这是我第一次上传我的项目,所以伙计们,这是grandluis.epizy.com/grand/或https://grandluis.000webhostapp.com我的目录是这样的。
/htdocs-
-------/grand-
-------------/application-
-------------/assets-
-------------/system-
-------------.editorconfig
-------------.htaccess
-------------.composer.json
-------------.contributing.md
-------files for your website should be uploaded here-
-------index2.html-
.hraccess-
.override-
DO NOT UPLOAD FILES HERE-
我注意到,如果你点击网站上的url按钮,css就会触发。我认为只有当你手动键入URL时,CSS才会触发。
grandluis.000webhostapp.com-当您通过https 访问网站时,您的css将加载在http中
您必须将config.php更新为:$config['base_url'] = 'https://grandluis.000webhostapp.com';
此外,如果尚未执行此操作,请在加载资产时使用base_url
示例:<link href="<?=base_url('path/to/your/style.css');?>" rel="stylesheet" />