I have the following htaccess to allow for no file extensions in the url:
Options +FollowSymlinks
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ $1.php
My problem is that i have both a file called images.php and a folder called images, so when i use the url: .com/images - it takes me to the images folder, where as: .com/contact - takes me to the correct page.