我试图找到一些答案,但它对我不起作用所以我决定在这里问: 我是codeigniter的新手,在看完一些教程之后我最终得到了这个.htaccess代码。
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /myprojectname
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond $1 !^(index.php|css|robots.txt)
RewriteRule ^(.*)$ index.php/$1 [L]
</IfModule>
<IfModule !mod_rewrite.c>
ErrorDocument 404 /index.php
</IfModule>
我在localhost上使用xampp,我的问题是我无法在我的视图中加载我的CSS
<link rel="stylesheet" href="css/metro-bootstrap.css">
实际上我在RewriteCond $1 !^(index.php|css|robots.txt)
中包含了css
root看起来像这样
/
-application
-css
-js
-font
-system
-.htaccess
-index.php
答案 0 :(得分:2)
您不必在该行中包含css和robots.txt,因为RewriteCond %{REQUEST_FILENAME} !-f
负责处理它(基本上它表示如果它不是文件则重写 - &#39;! - f&# 39;部分),实际上你可以删除RewriteCond $1 !^(index.php|css|robots.txt)
。如果您的css仍然不起作用,请使用<?php echo base_url();?>css/metro-bootstrap.css
这行代码,base_url()
表示项目中的基本路径。
答案 1 :(得分:1)
您可以在.htaccess中定义基础
Options +FollowSymLinks
RewriteEngine on
RewriteBase /name of the path base