paths (or possibly a small set with predefined path depths) to the
correct index file would be ideal.
-UPDATE: 2013-12-11 Apache Config Repaired
+UPDATE: 2013-12-12 Apache Config Repaired
+++++++++++++++++++++++++++++++++++++++++
I finally got around to fixing the Apache configuration. It now supports
-arbitrary nesting:
+arbitrary nesting via EGWeb.pm extension.
[source,conf]
-----------------------------------------------------------------------------
<LocationMatch /eg/staff/>
Options -MultiViews
+ PerlSetVar OILSWebStopAtIndex "true"
# map /eg/staff to /eg/staff/index
RewriteEngine On
RewriteCond %{PATH_INFO} =/staff/
RewriteRule (.*) /eg/staff/index [L,DPI]
-
- # map /eg/staff/foo/bar to /eg/staff/foo/index
- RewriteEngine On
- RewriteCond %{PATH_INFO} !.*/(index|css|t_*)
- RewriteRule (.*)/[^\/]+$ $1/index [L,DPI]
</LocationMatch>
-----------------------------------------------------------------------------