php – codeigniter中的资产

我刚开始使用codeigniter并想在我的视图中包含一些外部CSS.这是我的目录结构:

application
   ....
system
   ....
assets
    css
        style.css

我使用这个HTML代码链接文件:(使用example.com作为示例,lol)

<link rel="Stylesheet" type="text/css" href="http://example.com/assets/css/style.css"/>

这是我的.htaccess文件

RewriteEngine on

RewriteCond $1 !^(index\.PHP|images|css|js|robots\.txt)
RewriteRule ^(.*)$index.PHP/$1 [L]

现在,我的问题是它返回404错误.如果您需要更多信息,请说

提前致谢!

解决方法:

我发现CI .htaccess规则限制了必须添加所有不同文件夹的限制.因此,我使用以下内容

# Checks to see if the user is attempting to access a valid file,
# such as an image or css document, if this isn't true it sends the
# request to index.PHP
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$index.PHP/$1 [L]

给那个打击,看看你如何继续.

相关文章

统一支付是JSAPI/NATIVE/APP各种支付场景下生成支付订单,返...
统一支付是JSAPI/NATIVE/APP各种支付场景下生成支付订单,返...
前言 之前做了微信登录,所以总结一下微信授权登录并获取用户...
FastAdmin是我第一个接触的后台管理系统框架。FastAdmin是一...
之前公司需要一个内部的通讯软件,就叫我做一个。通讯软件嘛...
统一支付是JSAPI/NATIVE/APP各种支付场景下生成支付订单,返...