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
RewriteCond %{REQUEST_URI} =/
41
	# doesn't have path (which disables usernames to avoid needing trailing . )
42
RewriteCond %{REDIRECT_REQUEST_URI} =/
43
	# original URL also doesn't have path
44
RewriteRule ^.*$ username_prefix.php [discardpath,last,noescape,qsappend]
45

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

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

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

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

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

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

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

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

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

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

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

    
115
## specific to /
116

    
117
RewriteCond %{ENV:innermost_dir} =/
118
RewriteRule ^.+$ /VegCore/$0 [discardpath,last,noescape,qsappend]
119

    
120

    
121
#### directory indexing
122

    
123
### mod_autoindex
124

    
125
IndexOptions +FoldersFirst +HTMLTable +IconsAreLinks +IgnoreCase +TrackModified +VersionSort +XHTML
126
IndexOrderDefault Ascending Description
127

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

    
131
IndexIgnoreReset on
132
IndexIgnore .svn
(8-8/35)