Anybody have any ideas as what is wrong here? I am still new to apache mod rewrites but I have a somewhat good idea what is going on but I keep getting flagged with a 500 internal server error except when I comment out line #4 it worked find prior to adding line #4 any suggestions as to whats wrong here?
Options +FollowSymLinks
RewriteEngine on
RewriteCond $1 !^(public|index\.php|thumbnail\.php)
RewriteRule ^thumbnail/(.*)$ /thumbnail.php?info=$1 [L]
RewriteRule ^(.*)$ /index.php/$1 [L]