Project

General

Profile

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 dirs with trailing /
47
RewriteCond %{REQUEST_FILENAME} -d
48
RewriteRule ^.+/$ - [discardpath,noescape,last,qsappend]
49

    
50
# don't rewrite existing files
51
RewriteCond %{REQUEST_FILENAME} -f
52
RewriteRule ^.+$ - [discardpath,noescape,last,qsappend]
53

    
54
# auto-add trailing / unless has an .htaccess with possible redirect
55
RewriteCond %{REQUEST_FILENAME} -d
56
RewriteCond %{REQUEST_FILENAME}/.htaccess !-f
57
RewriteRule ^.+$ %{REQUEST_URI}/ [discardpath,noescape,last,redirect,qsappend]
58

    
59
# handle DirectoryIndex subrequests when there is no DirectoryIndex
60
# use -F subrequest so that MultiViews auto-appends any extension
61
RewriteCond %{REQUEST_FILENAME} !-F
62
RewriteRule ^(.*/)?index$ $1 [discardpath,noescape,qsappend]
63

    
64
## specific to /
65

    
66
RewriteCond %{ENV:innermost_dir} =/
67
RewriteRule ^.+$ /VegCore/$0 [discardpath,noescape,last,qsappend]
(6-6/29)