Revision 8445
Added by Aaron Marcuse-Kubitza over 11 years ago
.htaccess | ||
---|---|---|
17 | 17 |
RewriteRule ^index$() $1 [discardpath,noescape] |
18 | 18 |
|
19 | 19 |
# dir without trailing / is provided as an absolute filesystem path |
20 |
RewriteCond %{ENV:innermost_dir} =db |
|
20 | 21 |
RewriteCond $0 ^/ [ornext] |
21 | 22 |
RewriteCond /$0 ^(.*)$ |
22 | 23 |
RewriteRule ^.+$ /servers/nimoy/salvias_plots%1 [discardpath,noescape,last] |
Also available in: Unified diff
web/**/.htaccess: fallback rules which should not be inherited by subdirs: Filter using a RewriteCond on %{ENV:innermost_dir} so that the rule is only run if the innermost dir was this dir. (This is needed when using InheritBefore.)