<IfModule mod_rewrite.c>
RewriteEngine On

#prevent indexing
Options +FollowSymLinks -indexes

#Redirect all calls and request to index.php
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ index.php [QSA,L]

</IfModule>
