Project

General

Profile

1
RewriteEngine on
2
RewriteOptions AllowNoSlash
3
RewriteBase /CTFS/schema/
4

    
5
SetEnvIf Request_URI ^ innermost_dir=schema
6

    
7
# parse dotpath in the query string
8
RewriteCond %{QUERY_STRING} ^(?!&).+$
9
RewriteCond %{REQUEST_URI} ^(.*?)(?:/index(?:\.\w+)?)?$
10
RewriteRule ^.*$ /dotpath%1 [discardpath,noescape,last]
11

    
12
# don't rewrite existing paths
13
RewriteCond %{REQUEST_FILENAME} -d [ornext]
14
RewriteCond %{REQUEST_FILENAME} -f
15
RewriteRule ^(?!/).+$ - [discardpath,noescape,last]
16

    
17
# handle DirectoryIndex subrequests
18
RewriteRule ^index$() $1 [discardpath,noescape]
19

    
20
# dir without trailing / is provided as an absolute filesystem path
21
RewriteCond %{ENV:innermost_dir} =schema
22
RewriteCond $0 ^/ [ornext]
23
RewriteCond #$0 ^(.*)$
24
RewriteRule ^.+$ ../_archive/DBv5.txt%1 [discardpath,noescape,last,redirect]
    (1-1/1)