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" or "__@host?query"
32
# *note*: paths and subdomains are *not* supported when using usernames
33
# supports multiple @ , nested . , query str: a@b.c@host?d&q -> host.?b.c.a.d&q
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
RewriteCond %{HTTP_HOST} ^[^.]+\.[^.]+$
39
	# doesn't have subdomain & host doesn't end in . (which disables usernames)
40
# doesn't have path (which disables usernames to avoid needing trailing . )
41
RewriteCond %{REQUEST_URI} =/
42
## original URL (if specified) also doesn't have path
43
RewriteCond %{REDIRECT_REQUEST_URI} ="" [ornext]
44
RewriteCond %{REDIRECT_REQUEST_URI} =/
45
# another RewriteRule (in a previous round) didn't turn off usernames
46
RewriteCond %{ENV:REDIRECT_usernames_disabled} =""
47
RewriteRule ^.*$ username_prefix.php [discardpath,last,noescape,qsappend]
48

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

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

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

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

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

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

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

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

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

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

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

    
118
## specific to /
119

    
120
RewriteCond %{ENV:innermost_dir} =/
121
RewriteRule ^.+$ /VegCore/$0 [discardpath,last,noescape,qsappend]
122

    
123

    
124
#### directory indexing
125

    
126
### mod_autoindex
127

    
128
IndexOptions +FoldersFirst +HTMLTable +IconsAreLinks +IgnoreCase +TrackModified +VersionSort +XHTML
129
IndexOrderDefault Ascending Description
130

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

    
134
IndexIgnoreReset on
135
IndexIgnore .svn
(8-8/35)