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
RewriteRule ^.*$ username_prefix.php [discardpath,last,noescape,qsappend]
43

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

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

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

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

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

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

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

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

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

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

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

    
113
## specific to /
114

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

    
118

    
119
#### directory indexing
120

    
121
### mod_autoindex
122

    
123
IndexOptions +FoldersFirst +HTMLTable +IconsAreLinks +IgnoreCase +TrackModified +VersionSort +XHTML
124
IndexOrderDefault Ascending Description
125

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

    
129
IndexIgnoreReset on
130
IndexIgnore .svn
(8-8/35)