I would like to make .htaccess rewrite requests to /images/. What i want it to do is to check if the file exists as /images/bla bla, and if not, then check ../images/bla bla. I thought i could just do something like:
RewriteEngine on
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(images|js)/(.*)$ ../$1/$2 [L]
RewriteRule . index.php [L]
But that doesn't seems to work. In fact, none of the files work after this. The only thing which works is the actual pages (controllers and other internal things).
Thanks in advance.

Help















