This is my file structure: you can see it here or
-resources/
--css/
---index.css
-src/
--views/
---main.view.php
--main.php
index.php
.htaccess
This is my .htaccess:
RewriteEngine On
RewriteRule ^(.*)$ index.php?url=$1 [L,QSA]
This is how I include the CSS in the view
<link rel="stylesheet" href="resources/css/index.css">
Problem: When I Include main.php (that includes the view) in index.php the CSS does not work no matter where I place the index.css. Any hint?