我刚开始使用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]
给那个打击,看看你如何继续.
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。