i got some problems with the mod_rewrite.
I want to redirect all requests to one page (app.php). It works fine:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond $1!^(app\.php|assets|editor|css|js|scripts|images|img|media|xml|user_guide|robots\.txt|favicon\.ico)
RewriteRule ^(.*)$ app.php/$1 [L,QSA]
</IfModule>
Okay so when i want to bind an css file, for example:
<link rel="stylesheet" type="text/css" href="../app/templates/style.css">
The chrome browser "firebug" shows me
style.css /app/templates GET 200 OK
But the css isnt include. I google for hours and didnt find anything. Even on stackoverflow i try'd some solutions. Hope you can help me.