1 |
7876
|
aaronmk
|
#### URL resolution
|
2 |
|
|
|
3 |
8397
|
aaronmk
|
Options +FollowSymLinks +Indexes +MultiViews
|
4 |
8055
|
aaronmk
|
|
5 |
8402
|
aaronmk
|
DirectorySlash off
|
6 |
9602
|
aaronmk
|
DirectoryIndex disabled
|
7 |
|
|
# index.* is instead supported by "redirect to index.*" RewriteRule
|
8 |
7876
|
aaronmk
|
|
9 |
|
|
### mod_rewrite
|
10 |
|
|
|
11 |
7878
|
aaronmk
|
RewriteEngine on
|
12 |
8405
|
aaronmk
|
RewriteOptions AllowNoSlash
|
13 |
7876
|
aaronmk
|
|
14 |
8443
|
aaronmk
|
SetEnvIf Request_URI ^ innermost_dir=/
|
15 |
|
|
|
16 |
13628
|
aaronmk
|
# 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 |
13629
|
aaronmk
|
# must come before username prefix parsing, because it requires the leading [.&]
|
19 |
13628
|
aaronmk
|
RewriteCond %{QUERY_STRING} ^(?!@?[.&]).+$
|
20 |
13629
|
aaronmk
|
# [.&] not already prepended and non-empty
|
21 |
13628
|
aaronmk
|
RewriteCond %{QUERY_STRING} ^@?[^=]*(?:[.&]|$)
|
22 |
|
|
# . or & before any =
|
23 |
|
|
RewriteCond %{QUERY_STRING} ^(@?)(.*)$
|
24 |
|
|
RewriteRule ^.*$ $0?%1.%2 [discardpath,noescape]
|
25 |
13629
|
aaronmk
|
# 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 |
13628
|
aaronmk
|
|
31 |
13622
|
aaronmk
|
# handle username-based prefix subpaths of the form "subpath@url?" or "__?@__"
|
32 |
13629
|
aaronmk
|
# supports multiple @ , nested . , & query str: a@b.c@url?@d&q -> url?b.c.a.d&q
|
33 |
13622
|
aaronmk
|
# ( @ is effectively a placeholder for the decoded username prefix)
|
34 |
13615
|
aaronmk
|
# 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 |
13628
|
aaronmk
|
# must come before external redirects, because they lose the username
|
37 |
13622
|
aaronmk
|
RewriteCond %{THE_REQUEST} "\? \S+$" [ornext]
|
38 |
|
|
RewriteCond %{QUERY_STRING} ^@
|
39 |
13615
|
aaronmk
|
RewriteRule ^ username_prefix.php [discardpath,last,noescape,qsappend]
|
40 |
|
|
|
41 |
7959
|
aaronmk
|
# remove www subdomain
|
42 |
|
|
RewriteCond %{HTTP_HOST} ^www\.(.*)$
|
43 |
8507
|
aaronmk
|
RewriteRule ^.*$ %{REQUEST_SCHEME}://%1%{REQUEST_URI} [discardpath,last,noescape,qsappend]
|
44 |
7959
|
aaronmk
|
|
45 |
8178
|
aaronmk
|
# remove linewraps used to create a newline for Google spreadsheets
|
46 |
8507
|
aaronmk
|
RewriteRule ^_-(.*)$ /$1 [discardpath,last,noescape,qsappend,redirect]
|
47 |
8178
|
aaronmk
|
|
48 |
8503
|
aaronmk
|
## translate subdomain to path
|
49 |
8504
|
aaronmk
|
# set REQUEST_URI_no_extra_/
|
50 |
8502
|
aaronmk
|
RewriteCond %{REQUEST_URI} ^(?:/|(.*))$
|
51 |
8504
|
aaronmk
|
RewriteRule ^ - [env=REQUEST_URI_no_extra_/:%1]
|
52 |
8503
|
aaronmk
|
# translate
|
53 |
8022
|
aaronmk
|
RewriteCond %{HTTP_HOST} !=vegbiendev.nceas.ucsb.edu
|
54 |
|
|
RewriteCond %{HTTP_HOST} ^(.*)\.([^.]*\.[^.]*)$
|
55 |
8507
|
aaronmk
|
RewriteRule ^.*$ %{REQUEST_SCHEME}://%2/${subdomain2path:%1}%{ENV:REQUEST_URI_no_extra_/} [discardpath,last,noescape,qsappend]
|
56 |
7987
|
aaronmk
|
|
57 |
8035
|
aaronmk
|
# use separate lowercase version when available
|
58 |
8443
|
aaronmk
|
RewriteCond %{ENV:innermost_dir} =/
|
59 |
8035
|
aaronmk
|
RewriteCond %{DOCUMENT_ROOT}/$1 !-d
|
60 |
8058
|
aaronmk
|
RewriteCond .${tolower:$1} ^.*$
|
61 |
8057
|
aaronmk
|
RewriteCond %{DOCUMENT_ROOT}/%0 -d
|
62 |
8507
|
aaronmk
|
RewriteRule ^([^/]*)(.*)$ %0$2 [discardpath,last,noescape,qsappend]
|
63 |
8389
|
aaronmk
|
# last: rewrite in the new subdir instead of applying this dir's rules
|
64 |
8035
|
aaronmk
|
|
65 |
8505
|
aaronmk
|
## parse dotpath in query string
|
66 |
10612
|
aaronmk
|
# make dotpath replacement start with ./ instead of /
|
67 |
|
|
RewriteCond %{QUERY_STRING} ^\.
|
68 |
|
|
RewriteRule ^$ . [discardpath,noescape,qsappend]
|
69 |
8505
|
aaronmk
|
# parse dotpath levels repeatedly in QUERY_STRING
|
70 |
|
|
RewriteCond %{QUERY_STRING} ^\.([^./&]*?)(?:\[([^\[\]/&]*)\])?([.&].*)?$
|
71 |
|
|
RewriteRule ^(.*?)(?:/(?:index(?:\.\w+)?)?)?$ $1/%1%2?%3 [discardpath,noescape,next,env=needs_redirect:1]
|
72 |
|
|
# redirect so REQUEST_URI is populated from REQUEST_FILENAME
|
73 |
|
|
RewriteCond %{ENV:needs_redirect} !=""
|
74 |
10611
|
aaronmk
|
RewriteRule ^ - [discardpath,last,noescape,qsappend,redirect]
|
75 |
|
|
# - uses REQUEST_FILENAME as redirect dest instead of empty REQUEST_URI
|
76 |
7997
|
aaronmk
|
|
77 |
9612
|
aaronmk
|
# <dir>/all forces mod_autoindex listing
|
78 |
|
|
RewriteRule ^(.*/)?all$ $1 [discardpath,last,noescape,qsappend,env=mod_autoindex_listing:1]
|
79 |
|
|
|
80 |
|
|
# for dirs, redirect to index.* unless mod_autoindex listing was requested
|
81 |
13306
|
aaronmk
|
# can't use "index" b/c MultiViews doesn't support that filename in Ubuntu 14.04
|
82 |
13304
|
aaronmk
|
RewriteCond %{REQUEST_FILENAME}index.php -F
|
83 |
9612
|
aaronmk
|
# use -F subrequest so that MultiViews auto-appends any extension
|
84 |
|
|
RewriteCond %{ENV:REDIRECT_mod_autoindex_listing} =""
|
85 |
13304
|
aaronmk
|
RewriteRule ^(.*/)?$ $1index.php [discardpath,last,noescape,qsappend]
|
86 |
|
|
RewriteCond %{REQUEST_FILENAME}index.htm -F
|
87 |
|
|
# use -F subrequest so that MultiViews auto-appends any extension
|
88 |
|
|
RewriteCond %{ENV:REDIRECT_mod_autoindex_listing} =""
|
89 |
|
|
RewriteRule ^(.*/)?$ $1index.htm [discardpath,last,noescape,qsappend]
|
90 |
9612
|
aaronmk
|
|
91 |
8481
|
aaronmk
|
# don't rewrite existing dirs with trailing /
|
92 |
|
|
RewriteCond %{REQUEST_FILENAME} -d
|
93 |
8507
|
aaronmk
|
RewriteRule ^.+/$ - [discardpath,last,noescape,qsappend]
|
94 |
8481
|
aaronmk
|
|
95 |
|
|
# don't rewrite existing files
|
96 |
8363
|
aaronmk
|
RewriteCond %{REQUEST_FILENAME} -f
|
97 |
8507
|
aaronmk
|
RewriteRule ^.+$ - [discardpath,last,noescape,qsappend]
|
98 |
8041
|
aaronmk
|
|
99 |
8483
|
aaronmk
|
# auto-add trailing / unless has an .htaccess with possible redirect
|
100 |
|
|
RewriteCond %{REQUEST_FILENAME} -d
|
101 |
|
|
RewriteCond %{REQUEST_FILENAME}/.htaccess !-f
|
102 |
8507
|
aaronmk
|
RewriteRule ^.+$ %{REQUEST_URI}/ [discardpath,last,noescape,qsappend,redirect]
|
103 |
8482
|
aaronmk
|
|
104 |
8496
|
aaronmk
|
# prepend dir name if it's part of the filename (e.g. dir/file -> dir/dir.file)
|
105 |
|
|
# works only if dir supports relative redirects and sets %{ENV:innermost_dir}
|
106 |
|
|
RewriteCond %{REQUEST_FILENAME} ^(.*/)?(.+?)$
|
107 |
8498
|
aaronmk
|
RewriteCond %1%{ENV:innermost_dir}.%2 -F
|
108 |
8507
|
aaronmk
|
RewriteRule ^(?!/)(.*/)?(.+?)$ $1%{ENV:innermost_dir}.$2 [discardpath,last,noescape,qsappend,redirect]
|
109 |
8496
|
aaronmk
|
|
110 |
8041
|
aaronmk
|
## specific to /
|
111 |
|
|
|
112 |
8443
|
aaronmk
|
RewriteCond %{ENV:innermost_dir} =/
|
113 |
8507
|
aaronmk
|
RewriteRule ^.+$ /VegCore/$0 [discardpath,last,noescape,qsappend]
|
114 |
9604
|
aaronmk
|
|
115 |
|
|
|
116 |
|
|
#### directory indexing
|
117 |
|
|
|
118 |
|
|
### mod_autoindex
|
119 |
|
|
|
120 |
11034
|
aaronmk
|
IndexOptions +FoldersFirst +HTMLTable +IconsAreLinks +IgnoreCase +TrackModified +VersionSort +XHTML
|
121 |
9609
|
aaronmk
|
IndexOrderDefault Ascending Description
|
122 |
9608
|
aaronmk
|
|
123 |
11039
|
aaronmk
|
IndexStyleSheet /main.css
|
124 |
|
|
IndexHeadInsert '<div><i>Note that some listed files are not web-accessible. They will produce a "Forbidden" error when clicked.</i></div>'
|
125 |
11649
|
aaronmk
|
|
126 |
|
|
IndexIgnoreReset on
|
127 |
|
|
IndexIgnore .svn
|