我在尝试加载template / header.php和footer.php中的css时遇到问题,并在执行此操作时遇到问题。
我的codeignitor应用程序的结构是
-application
-views
-- css (folder)
--- style.css
-- template (folder)
---header.php
在header.php中,我使用以下行加载css
<style> @import url('<?=base_url()?>css/style.css'); </style>
在Web控制台中,我将其视为
GET http://localhost/groce/css/style.css [HTTP/1.1 404 Not Found 1ms]
其中groce是我的申请名称
答案 0 :(得分:1)
试试这个:
<link rel="stylesheet" href="<?=site_url('css/style.css');?>" type="text/css"/>
你需要这样的应用程序结构:
-application
-css
-system
index.php
.htaccess
还需要添加css文件夹以重写.htaccess
RewriteCond $1 !^(index\.php|css)
答案 1 :(得分:0)
尝试纠正一个::
<link rel="stylesheet" type="text/css" href="<?php echo base_url();?>css/style.css">
结构::
-application
-css
-system