1
|
RewriteEngine on
|
2
|
RewriteOptions inherit
|
3
|
|
4
|
# don't redirect subdir paths
|
5
|
RewriteCond %{DOCUMENT_ROOT}/SALVIAS/$1 -d [ornext]
|
6
|
RewriteCond %{DOCUMENT_ROOT}/SALVIAS/$1 -l
|
7
|
RewriteRule ^([^/]*).*$ - [discardpath,noescape,last]
|
8
|
|
9
|
# handle DirectoryIndex (this must be at this position in the rules)
|
10
|
RewriteRule ^(.*/)?index\.php$ $1 [discardpath,noescape]
|
11
|
|
12
|
RewriteRule ^(?!Plot_)(.+)/$ Plot_$1 [discardpath,noescape]
|
13
|
RewriteRule ^(?:(.*)/)?$ http://salvias.net/Documents/salvias_data_dictionary.html#$1 [discardpath,noescape,last]
|