Hello,
I have the following directories.
application
library
[INDENT]css[/INDENT]
public
[INDENT].htaccess[/INDENT]
[INDENT]index.php[/INDENT]
.htaccess
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule (.*)$ index.php?rt=$1 [L,QSA]
Now I want the have access to the css directory. The normal include function works fine. But for the css I want to use "href".
How can I do that? And am I right, the problem is in de .htaccess file.
Thanks in advance.