Whats supposed to happen:
Any file requests in the root directory that are on the list are to be processed as is.
Any file requests in the /images/ directory are to be processed as is.
Anything else passed to the root directory (just the root directory) should be sent to viewpic.php?id= and then the request
What IS happening:
Everything above is working, except when i attempt to visit an image from the /images/ directory it doesnt display, and instead displays my site index.
My .htaccess file
RewriteEngine On
RewriteCond %{REQUEST_URI} !.*\.(gif|jpg|png|css|js|php|swf|xpi|ico|src)$ [OR]
RewriteCond %{REQUEST_URI} "/images/" [OR]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule (.+) view.php?picid=$1 [L]