Project

General

Profile

1
RewriteEngine on
2
RewriteOptions AllowNoSlash
3
RewriteBase /VegBIEN/Redmine/wiki/
4

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

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

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

    
18
# dir without trailing / is provided as an absolute filesystem path
19
RewriteCond $0 ^(?!/)(.+)$ [ornext]
20
RewriteCond Database_development ^(.*)$
21
RewriteRule ^.+$ ../main/wiki/%1 [discardpath,noescape,last]
    (1-1/1)