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?%1&%2 [discardpath,noescape]
30

    
31
# handle username-based prefix subpaths of the form "subpath@host//path"
32
# supports multiple @ , nested . , & query str: a@b.c@url?@d&q -> url?b.c.a.d&q
33
# ( @ is effectively a placeholder for the decoded username prefix)
34
# better than subpath.host because case is preserved and special chars allowed
35
# must require trailing ? , to avoid needing login to view the page itself
36
# must come before external redirects, because they lose the username
37
RewriteCond %{THE_REQUEST} "\S+ //"
38
RewriteRule ^ username_prefix.php [discardpath,last,noescape,qsappend]
39

    
40
# remove www subdomain
41
RewriteCond %{HTTP_HOST} ^www\.(.*)$
42
RewriteRule ^.*$ %{REQUEST_SCHEME}://%1%{REQUEST_URI} [discardpath,last,noescape,qsappend]
43

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

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

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

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

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

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

    
90
# don't rewrite existing dirs with trailing /
91
RewriteCond %{REQUEST_FILENAME} -d
92
RewriteRule ^.+/$ - [discardpath,last,noescape,qsappend]
93

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

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

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

    
109
## specific to /
110

    
111
RewriteCond %{ENV:innermost_dir} =/
112
RewriteRule ^.+$ /VegCore/$0 [discardpath,last,noescape,qsappend]
113

    
114

    
115
#### directory indexing
116

    
117
### mod_autoindex
118

    
119
IndexOptions +FoldersFirst +HTMLTable +IconsAreLinks +IgnoreCase +TrackModified +VersionSort +XHTML
120
IndexOrderDefault Ascending Description
121

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

    
125
IndexIgnoreReset on
126
IndexIgnore .svn
(8-8/35)