.htaccess 286 Bytes
Newer Older
Julien Jorry committed
1
<IfModule mod_rewrite.c>
2
    Options -MultiViews
Julien Jorry committed
3
    RewriteEngine On
4 5
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteRule ^(.*)$ index.php [QSA,L]
Julien Jorry committed
6 7 8 9
</IfModule>

<IfModule !mod_rewrite.c>
    <IfModule mod_alias.c>
10
        RedirectMatch 302 ^/$ /index.php/
Julien Jorry committed
11
    </IfModule>
12
</IfModule>