<IfModule mod_rewrite.c>
# Enable rewrite engine
Options +FollowSymLinks
RewriteEngine On

# Redirect internally all URIs to /index.php
#DirectoryIndex index.php
#RewriteRule forum - [L]
#RewriteRule \.(gif|jpg|js|css|png)$ - [L]
#RewriteRule .* index.php


RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . index.php [L]

</IfModule>
 
