https://bz.apache.org/bugzilla/show_bug.cgi?id=64740
--- Comment #4 from Jordan LE NUFF <[email protected]> --- (In reply to Eric Covener from comment #3) > I am curious if that's your actual AliasMatch and why Alias doesn't work for > you? Or is the example simplified? Yes, my example is simplified. My directory tree is like this : ├── home │ ├── www │ │ ├── env1 │ │ │ ├── STAGING │ │ │ │ ├── App1 │ │ │ │ ├── App2 │ │ │ │ ├── App3 │ │ ├── env2 │ │ │ ├── STAGING │ │ │ │ ├── App1 │ │ │ │ ├── App2 │ │ │ │ ├── App3 │ │ ├── env3 │ │ │ ├── STAGING │ │ │ │ ├── App1 │ │ │ │ ├── App2 │ │ │ │ ├── App3 I want to access to all App1 from STAGING by a URL like http://stage-app1.mydomain.com/. Also, for accessing to App1 from STAGING from env2, I will use http://stage-app1.mydomain.com/env2/. My Apache configuration works great with AliasMatch : > AliasMatch "^/([[:alnum:]_-]+)(/.*)?" "/home/www/$1/STAGING/App1/$2" > <Directory "/home/www/*/STAGING/App1"> But I really need a dynamic CONTEXT_PREFIX. -- You are receiving this mail because: You are the assignee for the bug. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
