Hi everyone,
I'd like to do something like this in VHost:
The idea is that all requests to /ppp/ will be translated to just / at the context level and will be passed to handler in that condition.
For example: example.com/ppp/my.gif will be passed to the handler like example.com/my.gif
I'd like to do something like this in VHost:
Apache config:
context /ppp {
type proxy
handler pallery_backend
addDefaultCharset off
rewrite {
enable 1
rewriteRule ^/ppp/(.*)$ /$1 [P]
}
}
For example: example.com/ppp/my.gif will be passed to the handler like example.com/my.gif