1
|
#### URL resolution
|
2
|
|
3
|
Options +FollowSymLinks +Indexes +MultiViews
|
4
|
|
5
|
DirectorySlash off
|
6
|
DirectoryIndex index
|
7
|
|
8
|
### mod_rewrite
|
9
|
|
10
|
RewriteEngine on
|
11
|
RewriteOptions AllowNoSlash
|
12
|
|
13
|
SetEnvIf Request_URI ^ innermost_dir=/
|
14
|
|
15
|
# remove www subdomain
|
16
|
RewriteCond %{HTTP_HOST} ^www\.(.*)$
|
17
|
RewriteRule ^.*$ %{REQUEST_SCHEME}://%1%{REQUEST_URI} [discardpath,noescape,last,qsappend]
|
18
|
|
19
|
# remove linewraps used to create a newline for Google spreadsheets
|
20
|
RewriteRule ^_-(.*)$ /$1 [discardpath,noescape,last,redirect,qsappend]
|
21
|
|
22
|
# set REQUEST_URI_NO_SLASH
|
23
|
RewriteCond %{REQUEST_URI} ^/$ [ornext]
|
24
|
RewriteCond %{REQUEST_URI} ^(.*)$
|
25
|
RewriteRule ^ - [env=REQUEST_URI_no_/:%1]
|
26
|
|
27
|
# translate subdomain to path
|
28
|
RewriteCond %{HTTP_HOST} !=vegbiendev.nceas.ucsb.edu
|
29
|
RewriteCond %{HTTP_HOST} ^(.*)\.([^.]*\.[^.]*)$
|
30
|
RewriteRule ^.*$ %{REQUEST_SCHEME}://%2/${subdomain2path:%1}%{ENV:REQUEST_URI_no_/} [discardpath,noescape,last,qsappend]
|
31
|
|
32
|
# use separate lowercase version when available
|
33
|
RewriteCond %{ENV:innermost_dir} =/
|
34
|
RewriteCond %{DOCUMENT_ROOT}/$1 !-d
|
35
|
RewriteCond .${tolower:$1} ^.*$
|
36
|
RewriteCond %{DOCUMENT_ROOT}/%0 -d
|
37
|
RewriteRule ^([^/]*)(.*)$ %0$2 [discardpath,noescape,last,qsappend]
|
38
|
# last: rewrite in the new subdir instead of applying this dir's rules
|
39
|
|
40
|
# parse dotpath in the query string
|
41
|
RewriteRule ^dotpath - [discardpath,noescape,last,qsappend]
|
42
|
RewriteCond %{QUERY_STRING} ^(?!&).+$
|
43
|
RewriteCond %{REQUEST_URI} ^(.*?)(?:/index(?:\.\w+)?)?$
|
44
|
RewriteRule ^.*$ /dotpath%1 [discardpath,noescape,last,qsappend]
|
45
|
|
46
|
# don't rewrite existing paths
|
47
|
RewriteCond %{REQUEST_FILENAME} -d [ornext]
|
48
|
RewriteCond %{REQUEST_FILENAME} -f
|
49
|
RewriteRule ^(?!/).+$ - [discardpath,noescape,last,qsappend]
|
50
|
|
51
|
# handle DirectoryIndex subrequests when there is no DirectoryIndex
|
52
|
# use -F subrequest so that MultiViews auto-appends any extension
|
53
|
RewriteCond %{REQUEST_FILENAME} !-F
|
54
|
RewriteRule ^(.*/)?index$ $1 [discardpath,noescape,qsappend]
|
55
|
|
56
|
## specific to /
|
57
|
|
58
|
RewriteCond %{ENV:innermost_dir} =/
|
59
|
RewriteRule ^.+$ /VegCore/$0 [discardpath,noescape,last,qsappend]
|