1 |
8114
|
aaronmk
|
RewriteEngine on
|
2 |
8405
|
aaronmk
|
RewriteOptions AllowNoSlash
|
3 |
8114
|
aaronmk
|
|
4 |
8444
|
aaronmk
|
SetEnvIf Request_URI ^ innermost_dir=IH
|
5 |
|
|
|
6 |
8363
|
aaronmk
|
# parse dotpath in the query string
|
7 |
|
|
RewriteCond %{QUERY_STRING} ^(?!&).+$
|
8 |
8399
|
aaronmk
|
RewriteCond %{REQUEST_URI} ^(.*?)(?:/index(?:\.\w+)?)?$
|
9 |
8400
|
aaronmk
|
RewriteRule ^.*$ /dotpath%1 [discardpath,noescape,last]
|
10 |
8363
|
aaronmk
|
|
11 |
8375
|
aaronmk
|
# don't rewrite existing paths
|
12 |
|
|
RewriteCond %{REQUEST_FILENAME} -d [ornext]
|
13 |
|
|
RewriteCond %{REQUEST_FILENAME} -f
|
14 |
8407
|
aaronmk
|
RewriteRule ^(?!/).+$ - [discardpath,noescape,last]
|
15 |
8366
|
aaronmk
|
|
16 |
8406
|
aaronmk
|
# handle DirectoryIndex subrequests
|
17 |
|
|
RewriteRule ^index$() $1 [discardpath,noescape]
|
18 |
|
|
|
19 |
8407
|
aaronmk
|
# dir without trailing / is provided as an absolute filesystem path
|
20 |
8445
|
aaronmk
|
RewriteCond %{ENV:innermost_dir} =IH
|
21 |
8407
|
aaronmk
|
RewriteCond $0 ^/ [ornext]
|
22 |
|
|
RewriteCond herbarium_list.php?QueryName=DetailedQuery&Restriction=NamPartyType+\%3D+\%27IH+Herbarium\%27&col_NamOrganisationAcronym=$0 ^(.*)$
|
23 |
|
|
RewriteRule ^.+$ http://sweetgum.nybg.org/ih/%1 [discardpath,noescape,last]
|