Projekt

Obecné

Profil

Stáhnout (412 Bajtů) Statistiky
| Větev: | Revize:
1
<IfModule mod_rewrite.c>
2
    <IfModule mod_negotiation.c>
3
        Options -MultiViews
4
    </IfModule>
5

    
6
    RewriteEngine On
7

    
8
    # Redirect Trailing Slashes If Not A Folder...
9
    RewriteCond %{REQUEST_FILENAME} !-d
10
    RewriteRule ^(.*)/$ /$1 [L,R=301]
11

    
12
    # Handle Front Controller...
13
    RewriteCond %{REQUEST_FILENAME} !-d
14
    RewriteCond %{REQUEST_FILENAME} !-f
15
    RewriteRule ^ index.php [L]
16
</IfModule>
(1-1/2)