<IfModule mod_rewrite.c>

	Options +FollowSymLinks
        RewriteEngine on

        # Send request via index.php (again, not if its a real file or folder)
        RewriteCond %{REQUEST_FILENAME} !-f
        RewriteCond %{REQUEST_FILENAME} !-d

	RewriteRule ^(.*).php$ index.php?modul=$1 [L]

</IfModule>
