1
|
#### URL resolution
|
2
|
|
3
|
Options +FollowSymLinks +Indexes +MultiViews
|
4
|
|
5
|
DirectorySlash off
|
6
|
DirectoryIndex disabled
|
7
|
# index.* is instead supported by "redirect to index.*" RewriteRule
|
8
|
|
9
|
### mod_rewrite
|
10
|
|
11
|
RewriteEngine on
|
12
|
RewriteOptions AllowNoSlash
|
13
|
|
14
|
SetEnvIf Request_URI ^ innermost_dir=/
|
15
|
|
16
|
# auto-detect dotpath in query string (having a . or & before any = )
|
17
|
# you can prepend . to force a dotpath, or & to force a query param
|
18
|
# must come before username prefix parsing, because it requires the leading [.&]
|
19
|
RewriteCond %{QUERY_STRING} ^(?![.&]).+$
|
20
|
# [.&] not already prepended and non-empty
|
21
|
RewriteCond %{QUERY_STRING} ^[^=]*(?:[.&]|$)
|
22
|
# . or & before any =
|
23
|
RewriteCond %{QUERY_STRING} ^.*$
|
24
|
RewriteRule ^.*$ $0?.%0 [discardpath,noescape,env=usernames_disabled:1]
|
25
|
# otherwise, prepend & to force a query param
|
26
|
RewriteCond %{QUERY_STRING} ^(?![.&]).+$
|
27
|
# [.&] not already prepended and non-empty
|
28
|
RewriteCond %{QUERY_STRING} ^.*$
|
29
|
RewriteRule ^.*$ $0?&%0 [discardpath,noescape,env=usernames_disabled:1]
|
30
|
|
31
|
# handle username-based prefix subpaths of the form "__@host"
|
32
|
# *note*: subdomains/paths/query strings are *not* supported with usernames
|
33
|
# supports multiple @ , nested .: a@b.c@host -> host.?b.c.a
|
34
|
# better than subpath.host because case is preserved and special chars allowed
|
35
|
# **IMPORTANT**: to access the home page after visiting a URL with a username,
|
36
|
# you must append . to the host (other pages are not affected by this problem)
|
37
|
# must come before external redirects, because they lose the username
|
38
|
#
|
39
|
## doesn't have subdomain & host doesn't end in . (which disables usernames)
|
40
|
RewriteCond %{HTTP_HOST} ^[^.]+\.[^.]+$
|
41
|
## doesn't have path (which disables usernames to avoid needing trailing . )
|
42
|
RewriteCond %{REQUEST_URI} =/
|
43
|
# original URL (if specified) also doesn't have path
|
44
|
RewriteCond %{REDIRECT_REQUEST_URI} ="" [ornext]
|
45
|
RewriteCond %{REDIRECT_REQUEST_URI} =/
|
46
|
## doesn't have query string (which disables usernames to avoid trailing . )
|
47
|
RewriteCond %{QUERY_STRING} =""
|
48
|
# another RewriteRule (possibly in a previous round) didn't turn off usernames
|
49
|
RewriteCond %{ENV:usernames_disabled} =""
|
50
|
RewriteCond %{ENV:REDIRECT_usernames_disabled} =""
|
51
|
RewriteRule ^.*$ username_prefix.php [discardpath,last,noescape,qsappend]
|
52
|
|
53
|
# remove www subdomain
|
54
|
RewriteCond %{HTTP_HOST} ^www\.(.*)$
|
55
|
RewriteRule ^.*$ %{REQUEST_SCHEME}://%1%{REQUEST_URI} [discardpath,last,noescape,qsappend]
|
56
|
|
57
|
# remove linewraps used to create a newline for Google spreadsheets
|
58
|
RewriteRule ^_-(.*)$ /$1 [discardpath,last,noescape,qsappend,redirect]
|
59
|
|
60
|
## translate subdomain to path
|
61
|
# set REQUEST_URI_no_extra_/
|
62
|
RewriteCond %{REQUEST_URI} ^(?:/|(.*))$
|
63
|
RewriteRule ^ - [env=REQUEST_URI_no_extra_/:%1]
|
64
|
# translate
|
65
|
RewriteCond %{HTTP_HOST} !=vegbiendev.nceas.ucsb.edu
|
66
|
RewriteCond %{HTTP_HOST} ^(.*)\.([^.]+\.[^.]+)\.?$
|
67
|
RewriteRule ^.*$ %{REQUEST_SCHEME}://%2/${subdomain2path:%1}%{ENV:REQUEST_URI_no_extra_/} [discardpath,last,noescape,qsappend]
|
68
|
|
69
|
# use separate lowercase version when available
|
70
|
RewriteCond %{ENV:innermost_dir} =/
|
71
|
RewriteCond %{DOCUMENT_ROOT}/$1 !-d
|
72
|
RewriteCond .${tolower:$1} ^.*$
|
73
|
RewriteCond %{DOCUMENT_ROOT}/%0 -d
|
74
|
RewriteRule ^([^/]*)(.*)$ %0$2 [discardpath,last,noescape,qsappend]
|
75
|
# last: rewrite in the new subdir instead of applying this dir's rules
|
76
|
|
77
|
## parse dotpath in query string
|
78
|
# make dotpath replacement start with ./ instead of /
|
79
|
RewriteCond %{QUERY_STRING} ^\.
|
80
|
RewriteRule ^$ . [discardpath,noescape,qsappend]
|
81
|
# parse dotpath levels repeatedly in QUERY_STRING
|
82
|
RewriteCond %{QUERY_STRING} ^\.([^./&]*?)(?:\[([^\[\]/&]*)\])?([.&].*)?$
|
83
|
RewriteRule ^(.*?)(?:/(?:index(?:\.\w+)?)?)?$ $1/%1%2?%3 [discardpath,noescape,next,env=needs_redirect:1]
|
84
|
# redirect so REQUEST_URI is populated from REQUEST_FILENAME
|
85
|
RewriteCond %{ENV:needs_redirect} !=""
|
86
|
RewriteRule ^ - [discardpath,last,noescape,qsappend,redirect]
|
87
|
# - uses REQUEST_FILENAME as redirect dest instead of empty REQUEST_URI
|
88
|
|
89
|
# <dir>/all forces mod_autoindex listing
|
90
|
RewriteRule ^(.*/)?all$ $1 [discardpath,last,noescape,qsappend,env=mod_autoindex_listing:1,env=usernames_disabled:1]
|
91
|
|
92
|
# for dirs, redirect to index.* unless mod_autoindex listing was requested
|
93
|
# can't use "index" b/c MultiViews doesn't support that filename in Ubuntu 14.04
|
94
|
RewriteCond %{REQUEST_FILENAME}index.php -F
|
95
|
# use -F subrequest so that MultiViews auto-appends any extension
|
96
|
RewriteCond %{ENV:REDIRECT_mod_autoindex_listing} =""
|
97
|
RewriteRule ^(.*/)?$ $1index.php [discardpath,last,noescape,qsappend]
|
98
|
RewriteCond %{REQUEST_FILENAME}index.htm -F
|
99
|
# use -F subrequest so that MultiViews auto-appends any extension
|
100
|
RewriteCond %{ENV:REDIRECT_mod_autoindex_listing} =""
|
101
|
RewriteRule ^(.*/)?$ $1index.htm [discardpath,last,noescape,qsappend]
|
102
|
|
103
|
# don't rewrite existing dirs with trailing /
|
104
|
RewriteCond %{REQUEST_FILENAME} -d
|
105
|
RewriteRule ^.+/$ - [discardpath,last,noescape,qsappend]
|
106
|
|
107
|
# don't rewrite existing files
|
108
|
RewriteCond %{REQUEST_FILENAME} -f
|
109
|
RewriteRule ^.+$ - [discardpath,last,noescape,qsappend]
|
110
|
|
111
|
# auto-add trailing / unless has an .htaccess with possible redirect
|
112
|
RewriteCond %{REQUEST_FILENAME} -d
|
113
|
RewriteCond %{REQUEST_FILENAME}/.htaccess !-f
|
114
|
RewriteRule ^.+$ %{REQUEST_URI}/ [discardpath,last,noescape,qsappend,redirect]
|
115
|
|
116
|
# prepend dir name if it's part of the filename (e.g. dir/file -> dir/dir.file)
|
117
|
# works only if dir supports relative redirects and sets %{ENV:innermost_dir}
|
118
|
RewriteCond %{REQUEST_FILENAME} ^(.*/)?(.+?)$
|
119
|
RewriteCond %1%{ENV:innermost_dir}.%2 -F
|
120
|
RewriteRule ^(?!/)(.*/)?(.+?)$ $1%{ENV:innermost_dir}.$2 [discardpath,last,noescape,qsappend,redirect]
|
121
|
|
122
|
## specific to /
|
123
|
|
124
|
RewriteCond %{ENV:innermost_dir} =/
|
125
|
RewriteRule ^.+$ /VegCore/$0 [discardpath,last,noescape,qsappend]
|
126
|
|
127
|
|
128
|
#### directory indexing
|
129
|
|
130
|
### mod_autoindex
|
131
|
|
132
|
IndexOptions +FoldersFirst +HTMLTable +IconsAreLinks +IgnoreCase +TrackModified +VersionSort +XHTML
|
133
|
IndexOrderDefault Ascending Description
|
134
|
|
135
|
IndexStyleSheet /main.css
|
136
|
IndexHeadInsert '<div><i>Note that some listed files are not web-accessible. They will produce a "Forbidden" error when clicked.</i></div>'
|
137
|
|
138
|
IndexIgnoreReset on
|
139
|
IndexIgnore .svn
|