i tried to find some answers but it doesnt work for me so i decided to ask here: im new to codeigniter, after watching some few tutorials i end up with this .htaccess code.
<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>
im using xampp on localhost, my problem is that i cant load my css in my view
<link rel="stylesheet" href="css/metro-bootstrap.css">
when in fact i include css in RewriteCond $1 !^(index.php|css|robots.txt)
root looks like this
/
-application
-css
-js
-font
-system
-.htaccess
-index.php