Projekt

Obecné

Profil

Stáhnout (814 Bajtů) Statistiky
| Větev: | Tag: | Revize:
1
<IfModule mod_autoindex.c>
2
	Options -Indexes
3
</IfModule>
4

    
5
<IfModule mod_rewrite.c>
6
	RewriteEngine On
7

    
8
    # přesměrování z nobtc URL adres na root
9
    RedirectMatch 301 "nobtc(.*)$" "/"
10

    
11
    # multidic
12
    RewriteCond %{REQUEST_URI} ^/multidic(.*)$
13
    RewriteRule ^multidic(.*)$ /old/html/multidic/$1
14

    
15
    # utf
16
    RewriteCond %{REQUEST_URI} ^/utf(.*)$
17
    RewriteRule ^utf/(.*)$ /old/html/utf/$1
18

    
19
    # zakázání přesměrování horních pravidel + přesměrování ze složky www/ na root
20
    RewriteCond %{REQUEST_URI} !^/old(.*)$
21
    RewriteCond %{REQUEST_URI} !^/old-nobtc(.*)$
22
    RewriteCond %{REQUEST_URI} !^/img(.*)$
23
    RewriteCond %{REQUEST_URI} !^/nobtc(.*)$
24
    RewriteCond %{REQUEST_URI} !^/multidic(.*)$
25
    RewriteCond %{REQUEST_URI} !^/utf(.*)$
26
    RewriteRule ^(.*)$ /www/$1
27

    
28
</IfModule>
(2-2/5)