i would like clean urls so when a visitor is served http://localhost/MYEVENTS/filename/ instead of http://localhost/MYEVENTS/filename.php
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteBase /MYEVENTS/
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /MYEVENTS/index.php [L]
RewriteRule ^([a-z]+)\/?$ $1.php [NC]
</IfModule>