Project

General

Profile

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?%1.%2 [discardpath,noescape]
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]
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 (in a previous round) didn't turn off usernames
49
RewriteCond %{ENV:REDIRECT_usernames_disabled} =""
50
RewriteRule ^.*$ username_prefix.php [discardpath,last,noescape,qsappend]
51

    
52
# remove www subdomain
53
RewriteCond %{HTTP_HOST} ^www\.(.*)$
54
RewriteRule ^.*$ %{REQUEST_SCHEME}://%1%{REQUEST_URI} [discardpath,last,noescape,qsappend]
55

    
56
# remove linewraps used to create a newline for Google spreadsheets
57
RewriteRule ^_-(.*)$ /$1 [discardpath,last,noescape,qsappend,redirect]
58

    
59
## translate subdomain to path
60
# set REQUEST_URI_no_extra_/
61
RewriteCond %{REQUEST_URI} ^(?:/|(.*))$
62
RewriteRule ^ - [env=REQUEST_URI_no_extra_/:%1]
63
# translate
64
RewriteCond %{HTTP_HOST} !=vegbiendev.nceas.ucsb.edu
65
RewriteCond %{HTTP_HOST} ^(.*)\.([^.]+\.[^.]+)\.?$
66
RewriteRule ^.*$ %{REQUEST_SCHEME}://%2/${subdomain2path:%1}%{ENV:REQUEST_URI_no_extra_/} [discardpath,last,noescape,qsappend]
67

    
68
# use separate lowercase version when available
69
RewriteCond %{ENV:innermost_dir} =/
70
RewriteCond %{DOCUMENT_ROOT}/$1 !-d
71
RewriteCond .${tolower:$1} ^.*$
72
RewriteCond %{DOCUMENT_ROOT}/%0 -d
73
RewriteRule ^([^/]*)(.*)$ %0$2 [discardpath,last,noescape,qsappend]
74
	# last: rewrite in the new subdir instead of applying this dir's rules
75

    
76
## parse dotpath in query string
77
# make dotpath replacement start with ./ instead of /
78
RewriteCond %{QUERY_STRING} ^\.
79
RewriteRule ^$ . [discardpath,noescape,qsappend]
80
# parse dotpath levels repeatedly in QUERY_STRING
81
RewriteCond %{QUERY_STRING} ^\.([^./&]*?)(?:\[([^\[\]/&]*)\])?([.&].*)?$
82
RewriteRule ^(.*?)(?:/(?:index(?:\.\w+)?)?)?$ $1/%1%2?%3 [discardpath,noescape,next,env=needs_redirect:1]
83
# redirect so REQUEST_URI is populated from REQUEST_FILENAME
84
RewriteCond %{ENV:needs_redirect} !=""
85
RewriteRule ^ - [discardpath,last,noescape,qsappend,redirect]
86
	# - uses REQUEST_FILENAME as redirect dest instead of empty REQUEST_URI
87

    
88
# <dir>/all forces mod_autoindex listing
89
RewriteRule ^(.*/)?all$ $1 [discardpath,last,noescape,qsappend,env=mod_autoindex_listing:1,env=usernames_disabled:1]
90

    
91
# for dirs, redirect to index.* unless mod_autoindex listing was requested
92
# can't use "index" b/c MultiViews doesn't support that filename in Ubuntu 14.04
93
RewriteCond %{REQUEST_FILENAME}index.php -F
94
	# use -F subrequest so that MultiViews auto-appends any extension
95
RewriteCond %{ENV:REDIRECT_mod_autoindex_listing} =""
96
RewriteRule ^(.*/)?$ $1index.php [discardpath,last,noescape,qsappend]
97
RewriteCond %{REQUEST_FILENAME}index.htm -F
98
	# use -F subrequest so that MultiViews auto-appends any extension
99
RewriteCond %{ENV:REDIRECT_mod_autoindex_listing} =""
100
RewriteRule ^(.*/)?$ $1index.htm [discardpath,last,noescape,qsappend]
101

    
102
# don't rewrite existing dirs with trailing /
103
RewriteCond %{REQUEST_FILENAME} -d
104
RewriteRule ^.+/$ - [discardpath,last,noescape,qsappend]
105

    
106
# don't rewrite existing files
107
RewriteCond %{REQUEST_FILENAME} -f
108
RewriteRule ^.+$ - [discardpath,last,noescape,qsappend]
109

    
110
# auto-add trailing / unless has an .htaccess with possible redirect
111
RewriteCond %{REQUEST_FILENAME} -d
112
RewriteCond %{REQUEST_FILENAME}/.htaccess !-f
113
RewriteRule ^.+$ %{REQUEST_URI}/ [discardpath,last,noescape,qsappend,redirect]
114

    
115
# prepend dir name if it's part of the filename (e.g. dir/file -> dir/dir.file)
116
# works only if dir supports relative redirects and sets %{ENV:innermost_dir}
117
RewriteCond %{REQUEST_FILENAME} ^(.*/)?(.+?)$
118
RewriteCond %1%{ENV:innermost_dir}.%2 -F
119
RewriteRule ^(?!/)(.*/)?(.+?)$ $1%{ENV:innermost_dir}.$2 [discardpath,last,noescape,qsappend,redirect]
120

    
121
## specific to /
122

    
123
RewriteCond %{ENV:innermost_dir} =/
124
RewriteRule ^.+$ /VegCore/$0 [discardpath,last,noescape,qsappend]
125

    
126

    
127
#### directory indexing
128

    
129
### mod_autoindex
130

    
131
IndexOptions +FoldersFirst +HTMLTable +IconsAreLinks +IgnoreCase +TrackModified +VersionSort +XHTML
132
IndexOrderDefault Ascending Description
133

    
134
IndexStyleSheet /main.css
135
IndexHeadInsert '<div><i>Note that some listed files are not web-accessible. They will produce a "Forbidden" error when clicked.</i></div>'
136

    
137
IndexIgnoreReset on
138
IndexIgnore .svn
(8-8/35)