0

我在尝试在 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>

在网络控制台中,我将其视为

GET http://localhost/groce/css/style.css [HTTP/1.1 404 Not Found 1ms]

groce 是我的应用程序的名称

4

2 回答 2

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)
于 2013-08-20T14:45:18.617 回答
0

尝试正确的一个::

<link rel="stylesheet" type="text/css" href="<?php echo base_url();?>css/style.css">

结构::

-application
-css
-system
于 2013-08-21T01:28:13.353 回答