I have a simple request that I cannot figure out. I need to redirect everything to index.php which I accomplished with the following
RewriteEngine On
RewriteCond %{REQUEST_URI} !=/index.php
RewriteRule .* /index.php
The only exception would be images. The are all in a folder called images. So in other words anything /images/* goes to that folder.
Thanks in advance for any help.