1
|
#### URL resolution
|
2
|
|
3
|
Options +FollowSymLinks +Indexes +MultiViews
|
4
|
|
5
|
DirectorySlash off
|
6
|
DirectoryIndex index
|
7
|
|
8
|
### mod_rewrite
|
9
|
|
10
|
RewriteEngine on
|
11
|
RewriteOptions AllowNoSlash
|
12
|
|
13
|
SetEnvIf Request_URI ^ innermost_dir=/
|
14
|
|
15
|
# remove www subdomain
|
16
|
RewriteCond %{HTTP_HOST} ^www\.(.*)$
|
17
|
RewriteRule ^.*$ %{REQUEST_SCHEME}://%1%{REQUEST_URI} [discardpath,last,noescape,qsappend]
|
18
|
|
19
|
# remove linewraps used to create a newline for Google spreadsheets
|
20
|
RewriteRule ^_-(.*)$ /$1 [discardpath,last,noescape,qsappend,redirect]
|
21
|
|
22
|
## translate subdomain to path
|
23
|
# set REQUEST_URI_no_extra_/
|
24
|
RewriteCond %{REQUEST_URI} ^(?:/|(.*))$
|
25
|
RewriteRule ^ - [env=REQUEST_URI_no_extra_/:%1]
|
26
|
# translate
|
27
|
RewriteCond %{HTTP_HOST} !=vegbiendev.nceas.ucsb.edu
|
28
|
RewriteCond %{HTTP_HOST} ^(.*)\.([^.]*\.[^.]*)$
|
29
|
RewriteRule ^.*$ %{REQUEST_SCHEME}://%2/${subdomain2path:%1}%{ENV:REQUEST_URI_no_extra_/} [discardpath,last,noescape,qsappend]
|
30
|
|
31
|
# use separate lowercase version when available
|
32
|
RewriteCond %{ENV:innermost_dir} =/
|
33
|
RewriteCond %{DOCUMENT_ROOT}/$1 !-d
|
34
|
RewriteCond .${tolower:$1} ^.*$
|
35
|
RewriteCond %{DOCUMENT_ROOT}/%0 -d
|
36
|
RewriteRule ^([^/]*)(.*)$ %0$2 [discardpath,last,noescape,qsappend]
|
37
|
# last: rewrite in the new subdir instead of applying this dir's rules
|
38
|
|
39
|
# auto-detect dotpath in query string (having a . before any = )
|
40
|
# you can prepend . to force a dotpath, or & to force a query param
|
41
|
RewriteCond %{QUERY_STRING} ^(?!\.)[^&]+
|
42
|
RewriteCond %0 ^[^=]*(?:\.|$)
|
43
|
RewriteRule ^ ?.%{QUERY_STRING} [discardpath,noescape]
|
44
|
|
45
|
## parse dotpath in query string
|
46
|
# parse dotpath levels repeatedly in QUERY_STRING
|
47
|
RewriteCond %{QUERY_STRING} ^\.([^./&]*?)(?:\[([^\[\]/&]*)\])?([.&].*)?$
|
48
|
RewriteRule ^(.*?)(?:/(?:index(?:\.\w+)?)?)?$ $1/%1%2?%3 [discardpath,noescape,next,env=needs_redirect:1]
|
49
|
# redirect so REQUEST_URI is populated from REQUEST_FILENAME
|
50
|
RewriteCond %{ENV:needs_redirect} !=""
|
51
|
RewriteRule ^.*$ $0 [last,redirect]
|
52
|
|
53
|
# don't rewrite existing dirs with trailing /
|
54
|
RewriteCond %{REQUEST_FILENAME} -d
|
55
|
RewriteRule ^.+/$ - [discardpath,last,noescape,qsappend]
|
56
|
|
57
|
# don't rewrite existing files
|
58
|
RewriteCond %{REQUEST_FILENAME} -f
|
59
|
RewriteRule ^.+$ - [discardpath,last,noescape,qsappend]
|
60
|
|
61
|
# auto-add trailing / unless has an .htaccess with possible redirect
|
62
|
RewriteCond %{REQUEST_FILENAME} -d
|
63
|
RewriteCond %{REQUEST_FILENAME}/.htaccess !-f
|
64
|
RewriteRule ^.+$ %{REQUEST_URI}/ [discardpath,last,noescape,qsappend,redirect]
|
65
|
|
66
|
# handle DirectoryIndex subrequests when there is no DirectoryIndex
|
67
|
# use -F subrequest so that MultiViews auto-appends any extension
|
68
|
RewriteCond %{REQUEST_FILENAME} !-F
|
69
|
RewriteRule ^(.*/)?index$ $1 [discardpath,noescape,qsappend]
|
70
|
|
71
|
# prepend dir name if it's part of the filename (e.g. dir/file -> dir/dir.file)
|
72
|
# works only if dir supports relative redirects and sets %{ENV:innermost_dir}
|
73
|
RewriteCond %{REQUEST_FILENAME} ^(.*/)?(.+?)$
|
74
|
RewriteCond %1%{ENV:innermost_dir}.%2 -F
|
75
|
RewriteRule ^(?!/)(.*/)?(.+?)$ $1%{ENV:innermost_dir}.$2 [discardpath,last,noescape,qsappend,redirect]
|
76
|
|
77
|
## specific to /
|
78
|
|
79
|
RewriteCond %{ENV:innermost_dir} =/
|
80
|
RewriteRule ^.+$ /VegCore/$0 [discardpath,last,noescape,qsappend]
|