# To use search engine friendly URLs check that mod_rewrite is enabled, and then copy
# this file to .htaccess
# 

## Not Found
RewriteBase /
ErrorDocument 404 /index.php?error=404

# Encoding issues
AddType 'text/html; charset=UTF-8' html
AddType 'text/xml; charset=UTF-8' atom rss xml

#Options -ExecCGI +FollowSymLinks -Indexes

<IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule ^(.*)$ /index.php/$1 [L]
</IfModule>
